diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-05-19 12:51:22 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-05-19 12:51:22 -0700 |
commit | d9d501b0683f47f0150ea5c545426f9474cdd350 (patch) | |
tree | 3b5026d07e241798f9465fc6fa0f2dfc5782eb68 /rerere.c | |
parent | rerere: plug memory leaks upon "rerere forget" failure (diff) | |
download | tgif-d9d501b0683f47f0150ea5c545426f9474cdd350.tar.xz |
rerere: remove an null statement
J6t spotted that previous commit added an empty statement by
mistake.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'rerere.c')
-rw-r--r-- | rerere.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1074,7 +1074,7 @@ static int rerere_forget_one_path(const char *path, struct string_list *rr) else error("cannot unlink %s: %s", filename, strerror(errno)); goto fail_exit; - }; + } /* * Update the preimage so that the user can resolve the |