You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ig...@apache.org on 2013/02/04 20:14:52 UTC

git commit: TS-1690 fix build on arm/ubuntu/gcc-4.2:

Updated Branches:
  refs/heads/master 88679d783 -> 90b3c0a2e


TS-1690 fix build on arm/ubuntu/gcc-4.2:

change %ld to %zu because size_t. We don't use PRi because there
is none for size_t.


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

Branch: refs/heads/master
Commit: 90b3c0a2e86876a9d50924d70f1136ec3dc8c939
Parents: 88679d7
Author: Igor Galić <i....@brainsware.org>
Authored: Mon Feb 4 20:12:55 2013 +0100
Committer: Igor Galić <i....@brainsware.org>
Committed: Mon Feb 4 20:12:55 2013 +0100

----------------------------------------------------------------------
 plugins/experimental/gzip/configuration.cc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/90b3c0a2/plugins/experimental/gzip/configuration.cc
----------------------------------------------------------------------
diff --git a/plugins/experimental/gzip/configuration.cc b/plugins/experimental/gzip/configuration.cc
index 693de50..5e69c5c 100644
--- a/plugins/experimental/gzip/configuration.cc
+++ b/plugins/experimental/gzip/configuration.cc
@@ -223,7 +223,7 @@ namespace Gzip {
             state = kParseDisallow;
           }
           else {
-            warning("failed to interpret \"%s\" at line %ld", token.c_str(), lineno);
+            warning("failed to interpret \"%s\" at line %zu", token.c_str(), lineno);
           }
           break;
         case kParseCompressibleContentType: