public inbox for git@vger.kernel.org 
 help / color / mirror / Atom feed
From: Pavel Roskin <proski@gnu•org>
To: git@vger•kernel.org
Subject: [PATCH] Fix warnings on PowerPC - use C99 printf format if available
Date: Tue, 09 Jan 2007 23:07:11 -0500	[thread overview]
Message-ID: <20070110040710.7403.74668.stgit@localhost.localdomain> (raw)

Signed-off-by: Pavel Roskin <proski@gnu•org>
---

 sha1_file.c |   15 +++++++++++----
 1 files changed, 11 insertions(+), 4 deletions(-)

diff --git a/sha1_file.c b/sha1_file.c
index 095a7e1..53e25f2 100644
--- a/sha1_file.c
+++ b/sha1_file.c
@@ -22,6 +22,12 @@
 #endif
 #endif
 
+#ifdef NO_C99_FORMAT
+#define SZ_FMT "lu"
+#else
+#define SZ_FMT "zu"
+#endif
+
 const unsigned char null_sha1[20];
 
 static unsigned int sha1_file_open_flag = O_NOATIME;
@@ -407,9 +413,9 @@ struct packed_git *packed_git;
 void pack_report()
 {
 	fprintf(stderr,
-		"pack_report: getpagesize()            = %10lu\n"
-		"pack_report: core.packedGitWindowSize = %10lu\n"
-		"pack_report: core.packedGitLimit      = %10lu\n",
+		"pack_report: getpagesize()            = %10" SZ_FMT "\n"
+		"pack_report: core.packedGitWindowSize = %10" SZ_FMT "\n"
+		"pack_report: core.packedGitLimit      = %10" SZ_FMT "\n",
 		page_size,
 		packed_git_window_size,
 		packed_git_limit);
@@ -417,7 +423,8 @@ void pack_report()
 		"pack_report: pack_used_ctr            = %10u\n"
 		"pack_report: pack_mmap_calls          = %10u\n"
 		"pack_report: pack_open_windows        = %10u / %10u\n"
-		"pack_report: pack_mapped              = %10lu / %10lu\n",
+		"pack_report: pack_mapped              = "
+			"%10" SZ_FMT " / %10" SZ_FMT "\n",
 		pack_used_ctr,
 		pack_mmap_calls,
 		pack_open_windows, peak_pack_open_windows,

             reply	other threads:[~2007-01-10  5:08 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-01-10  4:07 Pavel Roskin [this message]
2007-01-10  5:22 ` [PATCH] Fix warnings on PowerPC - use C99 printf format if available Junio C Hamano
2007-01-10  6:24   ` Pavel Roskin
2007-01-10  6:37     ` Shawn O. Pearce

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20070110040710.7403.74668.stgit@localhost.localdomain \
    --to=proski@gnu$(echo .)org \
    --cc=git@vger$(echo .)kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox