summaryrefslogtreecommitdiffstats
path: root/usr.bin/script/script.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/script/script.c')
-rw-r--r--usr.bin/script/script.c4
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();
}
OpenPOWER on IntegriCloud