From 8bf8e51bf5bc9a020b23fa1fde3cfa38abe51bf3 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Mon, 7 Apr 2025 16:53:15 +0900 Subject: [PATCH] fs-util: fix typo Follow-up for 053e0626dbbfa5561a3c746d911e7be1525a64f1. --- src/basic/fs-util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.3