summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXiaochen Wang <wangxiaochen0@gmail.com>2015-03-15 21:46:21 +0800
committerXiaochen Wang <wangxiaochen0@gmail.com>2015-03-15 21:46:21 +0800
commit85048c0397ce5fd288411724dc7ab5c1da64055b (patch)
tree344573fd91e0cffdde3e5a546b16c9d7b56682d2
parent7ed1a9681bfca76e3cc08b51511d36c8c11fe449 (diff)
downloadnginx-85048c0397ce5fd288411724dc7ab5c1da64055b.tar.gz
SPDY: fixed format specifier in logging.
-rw-r--r--src/http/ngx_http_spdy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_spdy.c b/src/http/ngx_http_spdy.c
index 6eac9326a..13b81a63a 100644
--- a/src/http/ngx_http_spdy.c
+++ b/src/http/ngx_http_spdy.c
@@ -1353,7 +1353,7 @@ ngx_http_spdy_state_window_update(ngx_http_spdy_connection_t *sc, u_char *pos,
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);