nghttpd: Fix compile error on travis

This commit is contained in:
Tatsuhiro Tsujikawa 2015-02-05 21:50:20 +09:00
parent d4f87ce29f
commit be3ee91e90
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}