You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by wa...@apache.org on 2012/05/01 18:42:26 UTC

git commit: Fixed format-arg mismatches

Updated Branches:
  refs/heads/master 129da882d -> bc9627593


Fixed format-arg mismatches


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

Branch: refs/heads/master
Commit: bc9627593963e9922c08cb89dc690f4894cec28f
Parents: 129da88
Author: Bart Wyatt <wa...@apache.org>
Authored: Tue May 1 11:41:01 2012 -0500
Committer: Bart Wyatt <wa...@apache.org>
Committed: Tue May 1 11:41:01 2012 -0500

----------------------------------------------------------------------
 iocore/cache/Store.cc |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/bc962759/iocore/cache/Store.cc
----------------------------------------------------------------------
diff --git a/iocore/cache/Store.cc b/iocore/cache/Store.cc
index 7e5ea36..423b613 100644
--- a/iocore/cache/Store.cc
+++ b/iocore/cache/Store.cc
@@ -700,7 +700,7 @@ Span::init(char *filename, int64_t size)
     hw_sector_size = arg;
     is_disk = 1;
     adjusted_sec = hw_sector_size / 512;
-    Debug("cache_init", "Span::init - %s hw_sector_size=%d is_disk=%d adjusted_sec=%d",
+    Debug("cache_init", "Span::init - %s hw_sector_size=%d is_disk=%d adjusted_sec=%" PRId64,
           filename, hw_sector_size, is_disk,adjusted_sec);
   }
 
@@ -760,7 +760,7 @@ Span::init(char *filename, int64_t size)
      * code for other arches seems to.  Revisit this, perhaps. */
     blocks = size / STORE_BLOCK_SIZE;
     
-    Debug("cache_init", "Span::init physical sectors %u total size %" PRId64 " geometry size %" PRId64 " store blocks %" PRId64 "", 
+    Debug("cache_init", "Span::init physical sectors %" PRId64 " total size %" PRId64 " geometry size %" PRId64 " store blocks %" PRId64 "",
           physsectors, hw_sector_size * physsectors, size, blocks);
 
     pathname = ats_strdup(filename);