From: Nguyễn Thái Ngọc Duy Date: Wed, 13 Jul 2016 15:44:01 +0000 (+0200) Subject: index-pack: report correct bad object offsets even if they are large X-Git-Tag: v2.9.3~39^2~3 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/fd3e67474c0b349049ccff5f72a50ef930a56013?ds=inline;hp=-c index-pack: report correct bad object offsets even if they are large Use the right type for offsets in this case, off_t, which makes a difference on 32-bit systems with large file support, and change formatting code accordingly. Signed-off-by: Nguyễn Thái Ngọc Duy Signed-off-by: Junio C Hamano --- fd3e67474c0b349049ccff5f72a50ef930a56013 diff --git a/builtin/index-pack.c b/builtin/index-pack.c index cafaab7b13..e2d8ae4a02 100644 --- a/builtin/index-pack.c +++ b/builtin/index-pack.c @@ -338,10 +338,10 @@ static void parse_pack_header(void) use(sizeof(struct pack_header)); } -static NORETURN void bad_object(unsigned long offset, const char *format, +static NORETURN void bad_object(off_t offset, const char *format, ...) __attribute__((format (printf, 2, 3))); -static NORETURN void bad_object(unsigned long offset, const char *format, ...) +static NORETURN void bad_object(off_t offset, const char *format, ...) { va_list params; char buf[1024]; @@ -349,7 +349,8 @@ static NORETURN void bad_object(unsigned long offset, const char *format, ...) va_start(params, format); vsnprintf(buf, sizeof(buf), format, params); va_end(params); - die(_("pack has bad object at offset %lu: %s"), offset, buf); + die(_("pack has bad object at offset %"PRIuMAX": %s"), + (uintmax_t)offset, buf); } static inline struct thread_local *get_thread_data(void)