diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2010-04-12 16:25:25 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-04-12 21:45:03 -0700 |
commit | 2e0052a5eb336dc48856bae0283a23198346b5ac (patch) | |
tree | 7710074013a1a6a34c479bd3c6a1574692ec6665 /tag.c | |
parent | Documentation/git-clone: Transform description list into item list (diff) | |
download | tgif-2e0052a5eb336dc48856bae0283a23198346b5ac.tar.xz |
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 <spearce@spearce.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'tag.c')
-rw-r--r-- | tag.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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; |