nghttpx: Fix output glitch

This commit is contained in:
Tatsuhiro Tsujikawa 2015-09-24 00:11:02 +09:00
parent c3283e1c6e
commit a54062bd5e
1 changed files with 1 additions and 1 deletions

View File

@ -372,7 +372,7 @@ namespace {
void worker_process_child_cb(struct ev_loop *loop, ev_child *w, int revents) {
std::string signalstr;
if (WIFSIGNALED(w->rstatus)) {
signalstr += ";signal ";
signalstr += "; signal ";
auto sig = WTERMSIG(w->rstatus);
auto s = strsignal(sig);
if (s) {