diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-02-09 23:00:16 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-02-09 23:00:16 +0000 |
commit | 923e0b4768e0445e7d3273702a2440a31a01c237 (patch) | |
tree | 5c488f573adda708e5fce12132e88fc64979666b /usr.sbin/ac/ac.c | |
parent | bbf09057d1d30d8cd2cce9517c417ef641d91e55 (diff) |
clean up flags++ instances around getopt()
ok florian
Diffstat (limited to 'usr.sbin/ac/ac.c')
-rw-r--r-- | usr.sbin/ac/ac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/ac/ac.c b/usr.sbin/ac/ac.c index 7bbecbfa923..d1628e62b6f 100644 --- a/usr.sbin/ac/ac.c +++ b/usr.sbin/ac/ac.c @@ -205,7 +205,7 @@ main(int argc, char *argv[]) switch (c) { #ifdef DEBUG case 'D': - Debug++; + Debug = 1; break; #endif case 'd': |