diff options
| author | Stefan Widgren <stefan.widgren@gmail.com> | 2015-02-15 21:07:05 +0100 |
|---|---|---|
| committer | Stefan Widgren <stefan.widgren@gmail.com> | 2015-02-15 21:07:05 +0100 |
| commit | c8e02b8776875e6372fc5eba8fc61c51f14f3392 (patch) | |
| tree | eb40ab7640394c68333ec670123b4a04f71dce70 /src/submodule.c | |
| parent | a291790a8d42579dafe8684151931847921a9578 (diff) | |
| download | libgit2-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/submodule.c')
| -rw-r--r-- | src/submodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/submodule.c b/src/submodule.c index 03714b43b..80f1b3789 100644 --- a/src/submodule.c +++ b/src/submodule.c @@ -85,7 +85,7 @@ static kh_inline int str_equal_no_trailing_slash(const char *a, const char *b) __KHASH_IMPL( str, static kh_inline, const char *, void *, 1, - str_hash_no_trailing_slash, str_equal_no_trailing_slash); + str_hash_no_trailing_slash, str_equal_no_trailing_slash) static int submodule_cache_init(git_repository *repo, int refresh); static void submodule_cache_free(git_submodule_cache *cache); |
