aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/cut.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/posix/cut.c')
-rw-r--r--toys/posix/cut.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/cut.c b/toys/posix/cut.c
index 7f10c5e7..25f25a8d 100644
--- a/toys/posix/cut.c
+++ b/toys/posix/cut.c
@@ -111,7 +111,7 @@ static void get_data(void)
else {
int fd = open(*argv, O_RDONLY, 0);
if(fd < 0) {//if file not present then continue with other files.
- perror_msg(*argv);
+ perror_msg("%s", *argv);
continue;
}
TT.do_cut(fd);