* [PATCH v2] symlinks.c: small style cleanup
@ 2009-06-07 14:43 Kjetil Barvik
0 siblings, 0 replies; only message in thread
From: Kjetil Barvik @ 2009-06-07 14:43 UTC (permalink / raw)
To: git; +Cc: Johannes Schindelin, Kjetil Barvik
Remove some unnecessary "return;"-statements at the end of "void
foo()"-functions.
Signed-off-by: Kjetil Barvik <barvik@broadpark.no>
---
Johannes Schindelin <Johannes.Schindelin@gmx.de> writes:
> Hi,
>
> On Sun, 7 Jun 2009, Kjetil Barvik wrote:
>
>> Add {}-braces around an else-part, where the if-part already has
>> {}-braces.
>
> This is the wrong way round. We prefer _not_ to add unnecessary
> braces, but do tolerate them from time to time.
OK. Have taken away that part of the patch in this verson (v2).
-- kjetil
symlinks.c | 3 ---
1 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/symlinks.c b/symlinks.c
index 1d6b35b..64c8cd3 100644
--- a/symlinks.c
+++ b/symlinks.c
@@ -263,7 +263,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 +295,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;
}
--
1.6.3.2.277.gd10543
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2009-06-07 14:45 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-07 14:43 [PATCH v2] symlinks.c: small style cleanup Kjetil Barvik
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).