diff options
author | midipix <writeonce@midipix.org> | 2017-11-09 08:40:43 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2017-11-09 08:40:43 -0500 |
commit | 1f9fe7e2e4f972052ed5b1dbe5e0bc4986ab56e9 (patch) | |
tree | 1b17c773fbec4ba8dd2056ac0fbc6b206bd80c3e /src | |
parent | 3b5a2aac1039cce82544429c1088f9591c7a545c (diff) | |
download | apimagic-1f9fe7e2e4f972052ed5b1dbe5e0bc4986ab56e9.tar.bz2 apimagic-1f9fe7e2e4f972052ed5b1dbe5e0bc4986ab56e9.tar.xz |
amgc_error_strings table: removed duplicate const declaration.
Diffstat (limited to 'src')
-rw-r--r-- | src/output/amgc_output_error.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output/amgc_output_error.c b/src/output/amgc_output_error.c index 1706894..041fc11 100644 --- a/src/output/amgc_output_error.c +++ b/src/output/amgc_output_error.c @@ -12,7 +12,7 @@ static const char aclr_green[] = "\x1b[32m"; static const char aclr_blue[] = "\x1b[34m"; static const char aclr_magenta[] = "\x1b[35m"; -static const char const * const amgc_error_strings[AMGC_ERR_CAP] = { +static char const * const amgc_error_strings[AMGC_ERR_CAP] = { [AMGC_ERR_FLOW_ERROR] = "flow error: unexpected condition or other", [AMGC_ERR_FLEE_ERROR] = "flees and bugs and cats and mice", [AMGC_ERR_NULL_CONTEXT] = "null driver or unit context", |