summaryrefslogtreecommitdiff
path: root/src/pack-objects.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/pack-objects.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/pack-objects.c')
-rw-r--r--src/pack-objects.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pack-objects.c b/src/pack-objects.c
index e287e3306..c4c061a3a 100644
--- a/src/pack-objects.c
+++ b/src/pack-objects.c
@@ -41,7 +41,7 @@ struct pack_write_context {
git_transfer_progress *stats;
};
-GIT__USE_OIDMAP;
+GIT__USE_OIDMAP
#ifdef GIT_THREADS