1From 76adb32c89184406278fd51a3fe138314b134a12 Mon Sep 17 00:00:00 2001
2From: Michael Forney <mforney@mforney.org>
3Date: Sat, 15 Jun 2019 20:58:00 -0700
4Subject: [PATCH] Remove `;` after function definition
5Upstream: https://github.com/ggreer/the_silver_searcher/pull/1324
6
7---
8 src/ignore.c | 2 +-
9 1 file changed, 1 insertion(+), 1 deletion(-)
10
11diff --git a/src/ignore.c b/src/ignore.c
12index fa41889..bdb03b4 100644
13--- a/src/ignore.c
14+++ b/src/ignore.c
15@@ -39,7 +39,7 @@ const char *ignore_pattern_files[] = {
16
17 int is_empty(ignores *ig) {
18 return (ig->extensions_len + ig->names_len + ig->slash_names_len + ig->regexes_len + ig->slash_regexes_len == 0);
19-};
20+}
21
22 ignores *init_ignore(ignores *parent, const char *dirname, const size_t dirname_len) {
23 ignores *ig = ag_malloc(sizeof(ignores));
24--
252.20.1
26