diff options
author | Steven Schubiger <stsc@refcnt.org> | 2013-11-05 15:31:22 +0100 |
---|---|---|
committer | Steven Schubiger <stsc@refcnt.org> | 2013-11-05 15:31:22 +0100 |
commit | f1289be2be39a408a09eeb91b524f78405799dbc (patch) | |
tree | 685802786a4828378fb5fd9dd58541e5b46b4079 /colorize.c | |
parent | 7f4773bba9036b8d1e01699d21fecfbaa042eb9e (diff) | |
download | colorize-f1289be2be39a408a09eeb91b524f78405799dbc.tar.gz colorize-f1289be2be39a408a09eeb91b524f78405799dbc.tar.bz2 |
Use NULL in long options data initialization
Diffstat (limited to 'colorize.c')
-rw-r--r-- | colorize.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -230,7 +230,7 @@ main (int argc, char **argv) { "exclude-random", required_argument, &opt_type, OPT_EXCLUDE_RANDOM }, { "help", no_argument, &opt_type, OPT_HELP }, { "version", no_argument, &opt_type, OPT_VERSION }, - { 0, 0, 0, 0 }, + { NULL, 0, NULL, 0 }, }; bool bold = false; |