[nginx] SPDY: fixed format specifier in logging.
Valentin Bartenev
vbart at nginx.com
Wed Mar 18 17:31:20 UTC 2015
details: http://hg.nginx.org/nginx/rev/199c0dd313ea
branches:
changeset: 6024:199c0dd313ea
user: Xiaochen Wang <wangxiaochen0 at gmail.com>
date: Sun Mar 15 21:46:21 2015 +0800
description:
SPDY: fixed format specifier in logging.
diffstat:
src/http/ngx_http_spdy.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r b550563ef96e -r 199c0dd313ea src/http/ngx_http_spdy.c
--- a/src/http/ngx_http_spdy.c Sat Mar 14 17:37:30 2015 +0300
+++ b/src/http/ngx_http_spdy.c Sun Mar 15 21:46:21 2015 +0800
@@ -1353,7 +1353,7 @@ ngx_http_spdy_state_window_update(ngx_ht
pos += NGX_SPDY_DELTA_SIZE;
ngx_log_debug2(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
- "spdy WINDOW_UPDATE sid:%ui delta:%ui", sid, delta);
+ "spdy WINDOW_UPDATE sid:%ui delta:%uz", sid, delta);
if (sid) {
stream = ngx_http_spdy_get_stream_by_id(sc, sid);
More information about the nginx-devel
mailing list