fix field width/precision warnings in blame.c
Using "size_t" values for printf field width/precision upsets gcc, it wants to see an "int". Signed-off-by: Tony Luck <tony.luck@intel.com> Signed-off-by: Junio C Hamano <junkio@cox.net>maint
parent
ac74905064
commit
2928390774
2
blame.c
2
blame.c
|
@ -748,7 +748,7 @@ int main(int argc, const char **argv)
|
||||||
struct commit_info ci;
|
struct commit_info ci;
|
||||||
const char *buf;
|
const char *buf;
|
||||||
int max_digits;
|
int max_digits;
|
||||||
size_t longest_file, longest_author;
|
int longest_file, longest_author;
|
||||||
int found_rename;
|
int found_rename;
|
||||||
|
|
||||||
const char* prefix = setup_git_directory();
|
const char* prefix = setup_git_directory();
|
||||||
|
|
Loading…
Reference in New Issue