diff options
Diffstat (limited to 'nginx/ngx_http_js_module.c')
-rw-r--r-- | nginx/ngx_http_js_module.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nginx/ngx_http_js_module.c b/nginx/ngx_http_js_module.c index b0e3ec69..3572a4cc 100644 --- a/nginx/ngx_http_js_module.c +++ b/nginx/ngx_http_js_module.c @@ -694,7 +694,7 @@ ngx_http_js_content_event_handler(ngx_http_request_t *r) } ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, - "http js content rc: %ui", ctx->status); + "http js content rc: %i", ctx->status); ngx_http_finalize_request(r, ctx->status); } @@ -715,7 +715,7 @@ ngx_http_js_content_write_event_handler(ngx_http_request_t *r) if (!njs_vm_pending(ctx->vm)) { ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, - "http js content rc: %ui", ctx->status); + "http js content rc: %i", ctx->status); ngx_http_finalize_request(r, ctx->status); return; |