]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
fs-util: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 7 Apr 2025 07:53:15 +0000 (16:53 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 7 Apr 2025 07:53:15 +0000 (16:53 +0900)
Follow-up for 053e0626dbbfa5561a3c746d911e7be1525a64f1.

src/basic/fs-util.c

index 71753b5ef293b7e2103423135f32939a745150aa..655f59a5480d8b96eda54b38d38d6fb1a9673665 100644 (file)
@@ -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;