diff options
author | Felipe Contreras <felipe.contreras@gmail.com> | 2009-10-11 23:46:11 +0300 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-10-11 21:54:44 -0700 |
commit | 2775d92c53d7b00758fa98e4ad8bce1e59445b05 (patch) | |
tree | 235e8cddb2e797276b6d5bba567145ea2067f6c8 /diff.c | |
parent | 3240269dd9038ea12eb2f19a4be1218d6320a548 (diff) | |
download | git-2775d92c53d7b00758fa98e4ad8bce1e59445b05.tar.gz |
diff.c: stylefix
Essentially; s/type* /type */ as per the coding guidelines.
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'diff.c')
-rw-r--r-- | diff.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -999,7 +999,7 @@ static void show_stats(struct diffstat_t *data, struct diff_options *options) total_files, adds, dels); } -static void show_shortstats(struct diffstat_t* data, struct diff_options *options) +static void show_shortstats(struct diffstat_t *data, struct diff_options *options) { int i, adds = 0, dels = 0, total_files = data->nr; |