From be3ee91e901ae6deaacc45ff833b7c09a5858204 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Thu, 5 Feb 2015 21:50:20 +0900 Subject: [PATCH] nghttpd: Fix compile error on travis --- src/nghttpd.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nghttpd.cc b/src/nghttpd.cc index 7cb9d0e6..cbde1976 100644 --- a/src/nghttpd.cc +++ b/src/nghttpd.cc @@ -49,7 +49,7 @@ namespace nghttp2 { namespace { int parse_push_config(Config &config, const char *optarg) { - const auto eq = strchr(optarg, '='); + auto eq = strchr(optarg, '='); if (eq == NULL) { return -1; }