From: Yu Watanabe Date: Mon, 7 Apr 2025 07:53:15 +0000 (+0900) Subject: fs-util: fix typo X-Git-Tag: v258-rc1~886 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8bf8e51bf5bc9a020b23fa1fde3cfa38abe51bf3;p=thirdparty%2Fsystemd.git fs-util: fix typo Follow-up for 053e0626dbbfa5561a3c746d911e7be1525a64f1. --- diff --git a/src/basic/fs-util.c b/src/basic/fs-util.c index 71753b5ef29..655f59a5480 100644 --- a/src/basic/fs-util.c +++ b/src/basic/fs-util.c @@ -788,7 +788,7 @@ int unlinkat_deallocate(int fd, const char *name, UnlinkDeallocateFlags flags) { } } - /* Don't dallocate if there's nothing to deallocate or if the file is linked elsewhere */ + /* Don't deallocate if there's nothing to deallocate or if the file is linked elsewhere */ if (st.st_blocks == 0 || st.st_nlink > 0) return 0;