* [PATCH] Fix warnings on PowerPC - use C99 printf format if available
@ 2007-01-10 4:07 Pavel Roskin
2007-01-10 5:22 ` Junio C Hamano
0 siblings, 1 reply; 4+ messages in thread
From: Pavel Roskin @ 2007-01-10 4:07 UTC (permalink / raw)
To: git
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,
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] Fix warnings on PowerPC - use C99 printf format if available
2007-01-10 4:07 [PATCH] Fix warnings on PowerPC - use C99 printf format if available Pavel Roskin
@ 2007-01-10 5:22 ` Junio C Hamano
2007-01-10 6:24 ` Pavel Roskin
0 siblings, 1 reply; 4+ messages in thread
From: Junio C Hamano @ 2007-01-10 5:22 UTC (permalink / raw)
To: Pavel Roskin; +Cc: git
Pavel Roskin <proski@gnu.org> writes:
> Signed-off-by: Pavel Roskin <proski@gnu.org>
This needs a better subject. I do not see anything PowerPC specific...
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] Fix warnings on PowerPC - use C99 printf format if available
2007-01-10 5:22 ` Junio C Hamano
@ 2007-01-10 6:24 ` Pavel Roskin
2007-01-10 6:37 ` Shawn O. Pearce
0 siblings, 1 reply; 4+ messages in thread
From: Pavel Roskin @ 2007-01-10 6:24 UTC (permalink / raw)
To: Junio C Hamano; +Cc: git
Quoting Junio C Hamano <junkio@cox.net>:
> Pavel Roskin <proski@gnu.org> writes:
>
> > Signed-off-by: Pavel Roskin <proski@gnu.org>
>
> This needs a better subject. I do not see anything PowerPC specific...
Indeed, it happens on i386 as well (but not on x86_64). OK, the subject should
be:
Fix warnings in sha1_file.c - use C99 printf format if available
--
Regards,
Pavel Roskin
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] Fix warnings on PowerPC - use C99 printf format if available
2007-01-10 6:24 ` Pavel Roskin
@ 2007-01-10 6:37 ` Shawn O. Pearce
0 siblings, 0 replies; 4+ messages in thread
From: Shawn O. Pearce @ 2007-01-10 6:37 UTC (permalink / raw)
To: Pavel Roskin; +Cc: Junio C Hamano, git
Pavel Roskin <proski@gnu.org> wrote:
> Quoting Junio C Hamano <junkio@cox.net>:
> > Pavel Roskin <proski@gnu.org> writes:
> >
> > > Signed-off-by: Pavel Roskin <proski@gnu.org>
> >
> > This needs a better subject. I do not see anything PowerPC specific...
>
> Indeed, it happens on i386 as well (but not on x86_64). OK, the subject should
> be:
>
> Fix warnings in sha1_file.c - use C99 printf format if available
When I wrote that code it was warning free on Mac OS X/PowerPC.
Apparently that wasn't true elsewhere. :-)
Thanks for cleaning up after me.
--
Shawn.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2007-01-10 6:37 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-01-10 4:07 [PATCH] Fix warnings on PowerPC - use C99 printf format if available Pavel Roskin
2007-01-10 5:22 ` Junio C Hamano
2007-01-10 6:24 ` Pavel Roskin
2007-01-10 6:37 ` Shawn O. Pearce
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).