From: Brandon Casey Date: Thu, 18 Mar 2010 15:03:43 +0000 (-0500) Subject: notes.c: remove inappropriate call to return X-Git-Tag: v1.7.1-rc0~61 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=a502ab93339adeef014e1d95cb8f2520379a8651;p=git.git notes.c: remove inappropriate call to return Signed-off-by: Brandon Casey Acked-by: Johan Herland Signed-off-by: Junio C Hamano --- diff --git a/notes.c b/notes.c index a4f9926d4..07941b723 100644 --- a/notes.c +++ b/notes.c @@ -893,7 +893,7 @@ void remove_note(struct notes_tree *t, const unsigned char *object_sha1) assert(t->initialized); hashcpy(l.key_sha1, object_sha1); hashclr(l.val_sha1); - return note_tree_remove(t, t->root, 0, &l); + note_tree_remove(t, t->root, 0, &l); } const unsigned char *get_note(struct notes_tree *t,