Skip to content

Commit

Permalink
Style nit - don't put space after function names
Browse files Browse the repository at this point in the history
Our style is to not put a space after a function name.  I did here,
and Junio applied the patch with the incorrect formatting.  So I'm
cleaning up after myself since I noticed it upon review.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Shawn O. Pearce authored and Junio C Hamano committed May 30, 2007
1 parent b77ffe8 commit bc8e478
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sha1_file.c
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ static int check_packed_git_idx(const char *path, struct packed_git *p)
return 0;
}

int open_pack_index (struct packed_git *p)
int open_pack_index(struct packed_git *p)
{
char *idx_name;
int ret;
Expand Down

0 comments on commit bc8e478

Please sign in to comment.