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/pack-objects.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/pack-objects.c')
| -rw-r--r-- | src/pack-objects.c | 2 |
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 |
