diff options
| author | christos <christos@NetBSD.org> | 1996-10-10 22:46:11 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 1996-10-10 22:46:11 +0000 |
| commit | 60d201973eed017dc09408954cab89c13da54060 (patch) | |
| tree | e7005bbac835ab4659c043d5f26e0c682247bc0e /sys/kern/exec_script.c | |
| parent | 2b33d9d53adf1484799df9cc29242ab2e456ccb3 (diff) | |
printf -> kprintf, sprintf -> ksprintf
Diffstat (limited to 'sys/kern/exec_script.c')
| -rw-r--r-- | sys/kern/exec_script.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/exec_script.c b/sys/kern/exec_script.c index d2850817309..08da08991f6 100644 --- a/sys/kern/exec_script.c +++ b/sys/kern/exec_script.c @@ -1,4 +1,4 @@ -/* $NetBSD: exec_script.c,v 1.14 1996/09/30 23:18:44 cgd Exp $ */ +/* $NetBSD: exec_script.c,v 1.15 1996/10/10 22:46:11 christos Exp $ */ /* * Copyright (c) 1993, 1994, 1996 Christopher G. Demetriou @@ -213,7 +213,7 @@ check_shell: #endif #ifdef FDSCRIPTS } else - sprintf(*tmpsap++, "/dev/fd/%d", epp->ep_fd); + ksprintf(*tmpsap++, "/dev/fd/%d", epp->ep_fd); #endif *tmpsap = NULL; |
