diff options
-rw-r--r-- | usr.bin/lockf/lockf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/lockf/lockf.c b/usr.bin/lockf/lockf.c index 257af52..6995d0a 100644 --- a/usr.bin/lockf/lockf.c +++ b/usr.bin/lockf/lockf.c @@ -132,7 +132,7 @@ main(int argc, char **argv) if (child == 0) { /* The child process. */ close(lockfd); execvp(argv[0], argv); - perror(argv[0]); + warn("%s", argv[0]); _exit(1); } |