diff options
author | stefanf <stefanf@FreeBSD.org> | 2004-07-11 17:37:33 +0000 |
---|---|---|
committer | stefanf <stefanf@FreeBSD.org> | 2004-07-11 17:37:33 +0000 |
commit | e0b2a5b339c89dccabc683c04970ca9e8c870ac0 (patch) | |
tree | 370a3aabdff7adb2f11d2c2251bbc167b7ce6d53 /libexec | |
parent | 77a4e4e42186f9f4f0252632867458196ff4bc54 (diff) | |
download | FreeBSD-src-e0b2a5b339c89dccabc683c04970ca9e8c870ac0.zip FreeBSD-src-e0b2a5b339c89dccabc683c04970ca9e8c870ac0.tar.gz |
Fix a few cases that relied on 'implicit int' (constraint violation in C99).
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/atrun/atrun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/atrun/atrun.c b/libexec/atrun/atrun.c index 7780f06..1cb5e7e 100644 --- a/libexec/atrun/atrun.c +++ b/libexec/atrun/atrun.c @@ -83,7 +83,7 @@ static const char rcsid[] = /* File scope variables */ -static debug = 0; +static int debug = 0; void perr(const char *a); static void usage(void); |