From cb5d195553fe58244064c95d295109842437adae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Sat, 1 Feb 2025 17:37:07 +0100 Subject: [PATCH] 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 Haiku-Format: Haiku-format Bot --- src/tools/fs_shell/fssh.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/fs_shell/fssh.cpp b/src/tools/fs_shell/fssh.cpp index 45bbca15fe..8648a6bd3a 100644 --- a/src/tools/fs_shell/fssh.cpp +++ b/src/tools/fs_shell/fssh.cpp @@ -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; }