diff options
Diffstat (limited to 'toys/posix/od.c')
-rw-r--r-- | toys/posix/od.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/od.c b/toys/posix/od.c index 8919ad16..99219bf4 100644 --- a/toys/posix/od.c +++ b/toys/posix/od.c @@ -207,7 +207,7 @@ static void do_od(int fd, char *name) len = readall(fd, buf, len); if (len < 0) { - perror_msg("%s", name); + perror_msg_raw(name); break; } if (TT.max_count) TT.max_count -= len; |