Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Widgren <stefan.widgren@gmail.com>2015-02-15 23:07:05 +0300
committerStefan Widgren <stefan.widgren@gmail.com>2015-02-15 23:07:05 +0300
commitc8e02b8776875e6372fc5eba8fc61c51f14f3392 (patch)
treeeb40ab7640394c68333ec670123b4a04f71dce70 /tests/core
parenta291790a8d42579dafe8684151931847921a9578 (diff)
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 'tests/core')
-rw-r--r--tests/core/oidmap.c2
-rw-r--r--tests/core/strmap.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/core/oidmap.c b/tests/core/oidmap.c
index ec4b5e775..556a6ca4a 100644
--- a/tests/core/oidmap.c
+++ b/tests/core/oidmap.c
@@ -1,7 +1,7 @@
#include "clar_libgit2.h"
#include "oidmap.h"
-GIT__USE_OIDMAP;
+GIT__USE_OIDMAP
typedef struct {
git_oid oid;
diff --git a/tests/core/strmap.c b/tests/core/strmap.c
index a120f1feb..3b4276aea 100644
--- a/tests/core/strmap.c
+++ b/tests/core/strmap.c
@@ -1,7 +1,7 @@
#include "clar_libgit2.h"
#include "strmap.h"
-GIT__USE_STRMAP;
+GIT__USE_STRMAP
git_strmap *g_table;