Commit 1b1b91abdb4cd380995e3542580daa8700d93f6f

Omar Polo 2022-06-15T21:21:27

style: remove double semicolon

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/lib/patch.c b/lib/patch.c
index 2df166b..7167f54 100644
--- a/lib/patch.c
+++ b/lib/patch.c
@@ -599,7 +599,7 @@ apply_patch(struct got_worktree *worktree, struct got_repository *repo,
 	const struct got_error *err = NULL;
 	int file_renamed = 0;
 	char *oldpath = NULL, *newpath = NULL;
-	char *tmppath = NULL, *template = NULL, *parent = NULL;;
+	char *tmppath = NULL, *template = NULL, *parent = NULL;
 	FILE *tmp = NULL;
 	mode_t mode = GOT_DEFAULT_FILE_MODE;