diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-06-21 16:52:41 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-06-21 16:52:41 +0000 |
commit | 5fc2ff709cf64d297b2fc3b23d2946874be4179d (patch) | |
tree | 0f52618bd4afda48773ad687a00bd3554b9cd5e6 /usr.bin/sudo | |
parent | 21ec1a803ef1126c006715ee6c5199a8601f615e (diff) |
Add explicit declaration of printerr variable in function header
(was defaulting to int which is OK but oh so K&R :-). From Theo.
Diffstat (limited to 'usr.bin/sudo')
-rw-r--r-- | usr.bin/sudo/set_perms.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/sudo/set_perms.c b/usr.bin/sudo/set_perms.c index cf1dd0ad042..06d6457bda0 100644 --- a/usr.bin/sudo/set_perms.c +++ b/usr.bin/sudo/set_perms.c @@ -422,6 +422,7 @@ runas_setup() static void fatal(str, printerr) char *str; + int printerr; { if (str) { |