aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Contreras <felipe.contreras@gmail.com>2009-10-11 23:46:11 +0300
committerJunio C Hamano <gitster@pobox.com>2009-10-11 21:54:44 -0700
commit2775d92c53d7b00758fa98e4ad8bce1e59445b05 (patch)
tree235e8cddb2e797276b6d5bba567145ea2067f6c8
parent3240269dd9038ea12eb2f19a4be1218d6320a548 (diff)
downloadgit-2775d92c53d7b00758fa98e4ad8bce1e59445b05.tar.gz
git-2775d92c53d7b00758fa98e4ad8bce1e59445b05.tar.xz
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>
-rw-r--r--diff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/diff.c b/diff.c
index e1be18974..b39c1b6f7 100644
--- a/diff.c
+++ b/diff.c
@@ -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;