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/attr.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/attr.c')
-rw-r--r-- | src/attr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/attr.c b/src/attr.c index 2e1ef7c2a..44593da81 100644 --- a/src/attr.c +++ b/src/attr.c @@ -7,7 +7,7 @@ #include "git2/oid.h" #include <ctype.h> -GIT__USE_STRMAP; +GIT__USE_STRMAP const char *git_attr__true = "[internal]__TRUE__"; const char *git_attr__false = "[internal]__FALSE__"; |