You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2016/01/15 02:29:02 UTC

[5/5] trafficserver git commit: TS-4118: Fix format of a error message

TS-4118: Fix format of a error message

(cherry picked from commit b4eda956552addf3de75de128cdb9fe6a1cbc07b)


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/f5a200c0
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/f5a200c0
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/f5a200c0

Branch: refs/heads/6.1.x
Commit: f5a200c05658dfcc7b8e4414081594780c55740b
Parents: 5c0812b
Author: Masaori Koshiba <ma...@apache.org>
Authored: Fri Jan 15 10:22:53 2016 +0900
Committer: Leif Hedstrom <zw...@apache.org>
Committed: Thu Jan 14 18:26:07 2016 -0700

----------------------------------------------------------------------
 proxy/http2/RegressionHPACK.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/f5a200c0/proxy/http2/RegressionHPACK.cc
----------------------------------------------------------------------
diff --git a/proxy/http2/RegressionHPACK.cc b/proxy/http2/RegressionHPACK.cc
index f10b25e..5e52f15 100644
--- a/proxy/http2/RegressionHPACK.cc
+++ b/proxy/http2/RegressionHPACK.cc
@@ -424,7 +424,7 @@ REGRESSION_TEST(HPACK_Encode)(RegressionTest *t, int, int *pstatus)
     buf_len -= len;
 
     if (len < 0) {
-      box.check(false, "http2_write_psuedo_headers returned negative value: %d", len);
+      box.check(false, "http2_write_psuedo_headers returned negative value: %" PRId64, len);
       break;
     }