summaryrefslogtreecommitdiff
path: root/src/configfile-glue.c
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2019-12-08 00:42:23 -0500
committerGlenn Strauss <gstrauss@gluelogic.com>2020-07-08 19:54:28 -0400
commitcbdbd60b353a2f9a1412a66c7fd84a31e834dcb3 (patch)
tree7e5c5a753398df9f1cad73968ed4d7471fcf5d97 /src/configfile-glue.c
parentca97505a7292286d05f23080fd0acfe8b7cebd89 (diff)
downloadlighttpd-git-cbdbd60b353a2f9a1412a66c7fd84a31e834dcb3.tar.gz
[multiple] quiet clang compiler warnings
Diffstat (limited to 'src/configfile-glue.c')
-rw-r--r--src/configfile-glue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configfile-glue.c b/src/configfile-glue.c
index 98500ab1..9f462c56 100644
--- a/src/configfile-glue.c
+++ b/src/configfile-glue.c
@@ -317,7 +317,7 @@ static void config_cond_result_trace(connection *con, const data_config *dc, int
default: msg = "invalid cond_result_t"; break;
}
log_error(con->conf.errh, __FILE__, __LINE__, "%d (%s) result: %s",
- dc->context_ndx, "uncached"+(cached ? 2 : 0), msg);
+ dc->context_ndx, &"uncached"[cached ? 2 : 0], msg);
}
static cond_result_t config_check_cond_nocache(connection *con, const data_config *dc, int debug_cond, cond_cache_t *cache);