Skip to content

Commit

Permalink
grep: cast printf %.*s "precision" argument explicitly to int
Browse files Browse the repository at this point in the history
On some systems, regoff_t that is the type of rm_so/rm_eo members are
wider than int; %.*s precision specifier expects an int, so use an explicit
cast.

A breakage reported on Darwin by Brian Gernhardt should be fixed with
this patch.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Junio C Hamano committed Mar 9, 2009
1 parent a94982e commit 747a322
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions grep.c
Original file line number Diff line number Diff line change
Expand Up @@ -490,9 +490,9 @@ static void show_line(struct grep_opt *opt, char *bol, char *eol,
*eol = '\0';
while (next_match(opt, bol, eol, ctx, &match, eflags)) {
printf("%.*s%s%.*s%s",
match.rm_so, bol,
(int)match.rm_so, bol,
opt->color_match,
match.rm_eo - match.rm_so, bol + match.rm_so,
(int)(match.rm_eo - match.rm_so), bol + match.rm_so,
GIT_COLOR_RESET);
bol += match.rm_eo;
rest -= match.rm_eo;
Expand Down

0 comments on commit 747a322

Please sign in to comment.