diff options
Diffstat (limited to 'coreutils/realpath.c')
-rw-r--r-- | coreutils/realpath.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/realpath.c b/coreutils/realpath.c index 7c5dc3b..9c42987 100644 --- a/coreutils/realpath.c +++ b/coreutils/realpath.c @@ -35,7 +35,7 @@ int realpath_main(int argc, char **argv) puts(resolved_path); } else { retval = EXIT_FAILURE; - bb_perror_msg("%s", *argv); + bb_simple_perror_msg(*argv); } } while (--argc); |