diff options
author | kris <kris@FreeBSD.org> | 2000-07-10 09:18:19 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2000-07-10 09:18:19 +0000 |
commit | a1a3b8e5d80ac24fe1ef0859a253b61127e8050e (patch) | |
tree | 7328c2c698368e8332b1d9e45ee04c00586cb68e /usr.bin/script | |
parent | 74a1be3402cdf41e683eb2ad6e6967a9a09269fd (diff) | |
download | FreeBSD-src-a1a3b8e5d80ac24fe1ef0859a253b61127e8050e.zip FreeBSD-src-a1a3b8e5d80ac24fe1ef0859a253b61127e8050e.tar.gz |
Don't call warn() with no format string.
Diffstat (limited to 'usr.bin/script')
-rw-r--r-- | usr.bin/script/script.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/script/script.c b/usr.bin/script/script.c index 708a59b..e4663f9 100644 --- a/usr.bin/script/script.c +++ b/usr.bin/script/script.c @@ -244,10 +244,10 @@ doshell(av) login_tty(slave); if (av[0]) { execvp(av[0], av); - warn(av[0]); + warn("%s", av[0]); } else { execl(shell, shell, "-i", NULL); - warn(shell); + warn("%s", shell); } fail(); } |