From c8e02b8776875e6372fc5eba8fc61c51f14f3392 Mon Sep 17 00:00:00 2001 From: Stefan Widgren Date: Sun, 15 Feb 2015 21:07:05 +0100 Subject: Remove extra semicolon outside of a function MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Without this change, compiling with gcc and pedantic generates warning: ISO C does not allow extra ‘;’ outside of a function. --- src/strmap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/strmap.h') diff --git a/src/strmap.h b/src/strmap.h index dfbe5639f..520984744 100644 --- a/src/strmap.h +++ b/src/strmap.h @@ -16,7 +16,7 @@ #define kfree git__free #include "khash.h" -__KHASH_TYPE(str, const char *, void *); +__KHASH_TYPE(str, const char *, void *) typedef khash_t(str) git_strmap; typedef khiter_t git_strmap_iter; -- cgit v1.2.1