fs_shell: fix warning

warning: too many arguments for format [-Wformat-extra-args]
Change-Id: If35737dc2fe193923aa1d756cfd10ca6d820a09e
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8892
Reviewed-by: waddlesplash <[email protected]>
Haiku-Format: Haiku-format Bot <[email protected]>
This commit is contained in:
Jérôme Duval
2025-02-01 20:21:26 +00:00
committed by waddlesplash
parent f9af89e754
commit cb5d195553
+1 -1
View File
@@ -428,7 +428,7 @@ create_file(const char* path)
if (error == FSSH_B_OK) {
// TODO file/directory exists. Update access/modification time
fprintf(stderr, "TODO file/directory exists. update time stamp\n", path);
fprintf(stderr, "TODO file/directory exists. update time stamp: %s\n", path);
return FSSH_B_FILE_EXISTS;
}