diff options
author | Stefan Widgren <stefan.widgren@gmail.com> | 2015-07-31 16:23:11 +0200 |
---|---|---|
committer | Stefan Widgren <stefan.widgren@gmail.com> | 2015-07-31 16:23:11 +0200 |
commit | c369b37919114f4976b7a06107506e95916e5dd0 (patch) | |
tree | 7b21b77b787ee7c734b8ec80034530ec056fa96c /src/indexer.c | |
parent | 9d4b7d25241ca9deb85d128de21fd5ba35e21d28 (diff) | |
download | libgit2-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.c | 2 |
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; |