Skip to content

Commit

Permalink
tag.c: Correct indentation
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Junio C Hamano <[email protected]>
  • Loading branch information
spearce authored and gitster committed Apr 13, 2010
1 parent 4763868 commit 2e0052a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tag.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 2e0052a

Please sign in to comment.