diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2007-05-30 02:13:42 -0400 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-05-29 23:31:19 -0700 |
commit | bc8e478a285ff549a3e5182461b064313d400de3 (patch) | |
tree | 1de042743763630f38e7c790c2bb2dab6048b219 | |
parent | b77ffe8a57a0921f58cff22dcf1ed6ae64d89d6a (diff) | |
download | git-bc8e478a285ff549a3e5182461b064313d400de3.tar.gz git-bc8e478a285ff549a3e5182461b064313d400de3.tar.xz |
Style nit - don't put space after function names
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>
-rw-r--r-- | sha1_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sha1_file.c b/sha1_file.c index a3637d7e5..3093ac9f5 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -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; |