From d9d501b0683f47f0150ea5c545426f9474cdd350 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Thu, 19 May 2016 12:51:22 -0700 Subject: [PATCH] rerere: remove an null statement J6t spotted that previous commit added an empty statement by mistake. Signed-off-by: Junio C Hamano --- rerere.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rerere.c b/rerere.c index a804171a44..d4929a66ae 100644 --- a/rerere.c +++ b/rerere.c @@ -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 -- 2.11.4.GIT