diff options
author | Tor Arntsen <tor@spacetec.no> | 2010-06-04 11:32:11 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-06-07 15:50:21 -0700 |
commit | 2543d9b609d158f611e317738644e67cacac6b9a (patch) | |
tree | f2bce544a790c2e9efcb9bace65d8d1a6a92c7b0 /builtin/blame.c | |
parent | 3334729cf29605389b51effc1f311656f3fd8086 (diff) | |
download | git-2543d9b609d158f611e317738644e67cacac6b9a.tar.gz |
Change C99 comments to old-style C comments
Signed-off-by: Tor Arntsen <tor@spacetec.no>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/blame.c')
-rw-r--r-- | builtin/blame.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/blame.c b/builtin/blame.c index fc1586350f..4dd4c3f494 100644 --- a/builtin/blame.c +++ b/builtin/blame.c @@ -1589,7 +1589,7 @@ static void emit_porcelain(struct scoreboard *sb, struct blame_entry *ent) strcpy(hex, sha1_to_hex(suspect->commit->object.sha1)); printf("%s%c%d %d %d\n", hex, - ent->guilty ? ' ' : '*', // purely for debugging + ent->guilty ? ' ' : '*', /* purely for debugging */ ent->s_lno + 1, ent->lno + 1, ent->num_lines); |