aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Steven Schubiger <stsc@refcnt.org> 2018-04-08 22:00:12 +0200
committerGravatar Steven Schubiger <stsc@refcnt.org> 2018-04-08 22:00:12 +0200
commitc6f1715053160df72b63ffc852da15e2c5ca44c4 (patch)
treea32d25121f8eaf46136cf89df954fb188f76d567
parent359c07a2780a0c59eeac74ffd9a5d089cda6e41b (diff)
downloadcolorize-c6f1715053160df72b63ffc852da15e2c5ca44c4.tar.gz
colorize-c6f1715053160df72b63ffc852da15e2c5ca44c4.tar.bz2
process_args(): comment color_names[] initialization
-rw-r--r--colorize.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/colorize.c b/colorize.c
index 63237a5..9c30aeb 100644
--- a/colorize.c
+++ b/colorize.c
@@ -661,7 +661,11 @@ process_args (unsigned int arg_cnt, char **arg_strings, char *attr, const struct
int ret;
char *p;
struct stat sb;
- struct color_name *color_names[3] = { NULL, NULL, NULL };
+ struct color_name *color_names[3] = {
+ NULL, /* foreground */
+ NULL, /* background */
+ NULL, /* sentinel value */
+ };
const char *color_string = arg_cnt >= 1 ? arg_strings[0] : NULL;
const char *file_string = arg_cnt == 2 ? arg_strings[1] : NULL;