diff options
author | Steven Schubiger <stsc@refcnt.org> | 2019-08-20 23:40:13 +0200 |
---|---|---|
committer | Steven Schubiger <stsc@refcnt.org> | 2019-08-20 23:40:13 +0200 |
commit | 6323c270d4c14a27d0b7d035698e2b16ac840ac9 (patch) | |
tree | 1d94cc43316131a4d33c768489a6f12c30bdf32e /colorize.c | |
parent | c8123fe6adb0fc2095131a09df1bb5a82dd3c2a3 (diff) | |
download | colorize-6323c270d4c14a27d0b7d035698e2b16ac840ac9.tar.gz colorize-6323c270d4c14a27d0b7d035698e2b16ac840ac9.tar.bz2 |
Const DESC_TYPE
Diffstat (limited to 'colorize.c')
-rw-r--r-- | colorize.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -526,7 +526,7 @@ process_opt_attr (const char *p, const bool is_opt) }; unsigned int attr_types = 0; const char *desc_type[2] = { "--attr switch", "attr conf option" }; - unsigned int DESC_TYPE = is_opt ? DESC_OPTION : DESC_CONF; + const unsigned int DESC_TYPE = is_opt ? DESC_OPTION : DESC_CONF; while (*p) { |