Skip to content

Commit

Permalink
diff.c: fix some recent whitespace style violations
Browse files Browse the repository at this point in the history
These were introduced by ee7fb0b.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Jeff King authored and Junio C Hamano committed Dec 16, 2013
1 parent ee7fb0b commit 0ea7d5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions diff.c
Original file line number Diff line number Diff line change
Expand Up @@ -2936,7 +2936,7 @@ static void run_external_diff(const char *pgm,

env[0] = env_counter;
snprintf(env_counter, sizeof(env_counter), "GIT_DIFF_PATH_COUNTER=%d",
++o->diff_path_counter);
++o->diff_path_counter);
env[1] = env_total;
snprintf(env_total, sizeof(env_total), "GIT_DIFF_PATH_TOTAL=%d", q->nr);

Expand Down Expand Up @@ -3330,7 +3330,7 @@ void diff_setup_done(struct diff_options *options)
DIFF_OPT_SET(options, EXIT_WITH_STATUS);
}

options->diff_path_counter = 0;
options->diff_path_counter = 0;
}

static int opt_arg(const char *arg, int arg_short, const char *arg_long, int *val)
Expand Down

0 comments on commit 0ea7d5b

Please sign in to comment.