Removed redundant "u" format specifier.

It is implied for "x" and "X".
This commit is contained in:
Ruslan Ermilov
2016-04-08 15:03:38 +03:00
parent 4d1f67fd91
commit 37a3a2b2e8
5 changed files with 6 additions and 6 deletions

View File

@@ -138,7 +138,7 @@ ngx_spawn_process(ngx_cycle_t *cycle, char *name, ngx_int_t respawn)
}
ngx_log_error(NGX_LOG_ALERT, cycle->log, 0,
"%s process %P exited with code %Xul",
"%s process %P exited with code %Xl",
name, pid, code);
goto failed;

View File

@@ -484,7 +484,7 @@ ngx_reap_worker(ngx_cycle_t *cycle, HANDLE h)
}
ngx_log_error(NGX_LOG_NOTICE, cycle->log, 0,
"%s process %P exited with code %Xul",
"%s process %P exited with code %Xl",
ngx_processes[n].name, ngx_processes[n].pid, code);
ngx_close_handle(ngx_processes[n].reopen);