fs-util: fix typo

Follow-up for 053e0626db.
This commit is contained in:
Yu Watanabe
2025-04-07 16:53:15 +09:00
parent f0deacdd5c
commit 8bf8e51bf5

View 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;