From: Shawn O. Pearce Date: Mon, 12 Apr 2010 23:25:25 +0000 (-0700) Subject: tag.c: Correct indentation X-Git-Tag: v1.7.2-rc0~125^2~4 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2e0052a5eb336dc48856bae0283a23198346b5ac;p=git.git tag.c: Correct indentation 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 Signed-off-by: Junio C Hamano --- diff --git a/tag.c b/tag.c index 4470d2bf7..52d71bb1b 100644 --- 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;