Skip to content

Commit

Permalink
Fix warnings in sha1_file.c - use C99 printf format if available
Browse files Browse the repository at this point in the history
Signed-off-by: Pavel Roskin <proski@gnu.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Pavel Roskin authored and Junio C Hamano committed Jan 10, 2007
1 parent bb1091a commit e05db0f
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions sha1_file.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -407,17 +413,18 @@ 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);
fprintf(stderr,
"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,
Expand Down

0 comments on commit e05db0f

Please sign in to comment.