diff options
author | Steven Schubiger <stsc@refcnt.org> | 2015-10-25 20:08:06 +0100 |
---|---|---|
committer | Steven Schubiger <stsc@refcnt.org> | 2015-10-25 20:08:06 +0100 |
commit | 51d3c624413bd7f1ed5dca4b7262307ce65cb558 (patch) | |
tree | 581ceaac7e032220b914fd43274142347cb33ad0 /colorize.c | |
parent | 6be9faf1cbf403d2a855d97c1764de94bd61ae87 (diff) | |
download | colorize-51d3c624413bd7f1ed5dca4b7262307ce65cb558.tar.gz colorize-51d3c624413bd7f1ed5dca4b7262307ce65cb558.tar.bz2 |
Don't initialize arg_cnt
Diffstat (limited to 'colorize.c')
-rw-r--r-- | colorize.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -257,7 +257,7 @@ extern int optind; int main (int argc, char **argv) { - unsigned int arg_cnt = 0; + unsigned int arg_cnt; bool bold = false; |