Code

tag.c: Correct indentation
authorShawn O. Pearce <spearce@spearce.org>
Mon, 12 Apr 2010 23:25:25 +0000 (16:25 -0700)
committerJunio C Hamano <gitster@pobox.com>
Tue, 13 Apr 2010 04:45:03 +0000 (21:45 -0700)
These lines were incorrectly indented with spaces, violating our
coding style.  Its annoying to read with 4 position tab stops, so
fix the indentation to be correct.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
tag.c

diff --git a/tag.c b/tag.c
index 4470d2bf78e1fbb00d00e487f41daa4373cf48e1..52d71bb1bcf1d1478bf177b4cde1c0e732e15a8a 100644 (file)
--- a/tag.c
+++ b/tag.c
@@ -44,9 +44,9 @@ int parse_tag_buffer(struct tag *item, void *data, unsigned long size)
        char type[20];
        const char *start = data;
 
-        if (item->object.parsed)
-                return 0;
-        item->object.parsed = 1;
+       if (item->object.parsed)
+               return 0;
+       item->object.parsed = 1;
 
        if (size < 64)
                return -1;