diff options
author | Kjetil Barvik <barvik@broadpark.no> | 2009-06-07 13:33:05 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-06-07 16:23:04 -0700 |
commit | cb319c36312a16d8af9b635a75404bc0005c5119 (patch) | |
tree | e75ba4b6ec1811b33f507ee4de20eb6735125395 /symlinks.c | |
parent | 26c117d05d0714ab688ebcafc8eb68c769152bde (diff) | |
download | git-cb319c36312a16d8af9b635a75404bc0005c5119.tar.gz |
symlinks.c: small style cleanup
Add {}-braces around an else-part, where the if-part already has
{}-braces.
And, also remove some unnecessary "return;"-statements at the end of
"void foo()"-functions.
Signed-off-by: Kjetil Barvik <barvik@broadpark.no>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'symlinks.c')
-rw-r--r-- | symlinks.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/symlinks.c b/symlinks.c index 1d6b35b858..8dcd63261f 100644 --- a/symlinks.c +++ b/symlinks.c @@ -196,8 +196,9 @@ void invalidate_lstat_cache(const char *name, int len) cache.path[previous_slash] = '\0'; cache.len = previous_slash; cache.flags = FL_DIR; - } else + } else { reset_lstat_cache(); + } } } @@ -263,7 +264,6 @@ static void do_remove_scheduled_dirs(int new_len) removal.path[removal.len] != '/'); } removal.len = new_len; - return; } void schedule_dir_for_removal(const char *name, int len) @@ -296,11 +296,9 @@ void schedule_dir_for_removal(const char *name, int len) last_slash - match_len); removal.len = last_slash; } - return; } void remove_scheduled_dirs(void) { do_remove_scheduled_dirs(0); - return; } |