Commit abe80e37 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

nghttpx: Fix logging integer

parent 1ecc7940
...@@ -251,7 +251,7 @@ Log &Log::operator<<(long long n) { ...@@ -251,7 +251,7 @@ Log &Log::operator<<(long long n) {
return *this; return *this;
} }
*last_++ = '-'; *last_++ = '-';
*last_ += nlen; last_ += nlen;
update_full(); update_full();
auto p = last_ - 1; auto p = last_ - 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment