summaryrefslogtreecommitdiff
path: root/src/indexer.c
diff options
context:
space:
mode:
authorStefan Widgren <stefan.widgren@gmail.com>2015-07-31 16:23:11 +0200
committerStefan Widgren <stefan.widgren@gmail.com>2015-07-31 16:23:11 +0200
commitc369b37919114f4976b7a06107506e95916e5dd0 (patch)
tree7b21b77b787ee7c734b8ec80034530ec056fa96c /src/indexer.c
parent9d4b7d25241ca9deb85d128de21fd5ba35e21d28 (diff)
downloadlibgit2-c369b37919114f4976b7a06107506e95916e5dd0.tar.gz
Remove extra semicolon outside of a function
Without this change, compiling with gcc and pedantic generates warning: ISO C does not allow extra ‘;’ outside of a function.
Diffstat (limited to 'src/indexer.c')
-rw-r--r--src/indexer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indexer.c b/src/indexer.c
index 512addf48..9aa092556 100644
--- a/src/indexer.c
+++ b/src/indexer.c
@@ -18,7 +18,7 @@
#include "oidmap.h"
#include "zstream.h"
-GIT__USE_OIDMAP;
+GIT__USE_OIDMAP
extern git_mutex git__mwindow_mutex;