summaryrefslogtreecommitdiff
path: root/src/sortedcache.c
diff options
context:
space:
mode:
authorStefan Widgren <stefan.widgren@gmail.com>2015-02-15 21:07:05 +0100
committerStefan Widgren <stefan.widgren@gmail.com>2015-02-15 21:07:05 +0100
commitc8e02b8776875e6372fc5eba8fc61c51f14f3392 (patch)
treeeb40ab7640394c68333ec670123b4a04f71dce70 /src/sortedcache.c
parenta291790a8d42579dafe8684151931847921a9578 (diff)
downloadlibgit2-c8e02b8776875e6372fc5eba8fc61c51f14f3392.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/sortedcache.c')
-rw-r--r--src/sortedcache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sortedcache.c b/src/sortedcache.c
index 1195ea339..115175724 100644
--- a/src/sortedcache.c
+++ b/src/sortedcache.c
@@ -1,6 +1,6 @@
#include "sortedcache.h"
-GIT__USE_STRMAP;
+GIT__USE_STRMAP
int git_sortedcache_new(
git_sortedcache **out,