diff options
author | Ramsay Jones <ramsay@ramsay1.demon.co.uk> | 2010-02-12 16:50:33 +0000 |
---|---|---|
committer | Ramsay Jones <ramsay@ramsay1.demon.co.uk> | 2010-02-28 20:09:45 +0000 |
commit | 1e5dd57214dbec1b166c881c1c44c8930923da17 (patch) | |
tree | 7f7103b840176225a27d40ff95c541ecaf74bb59 /src/git/common.h | |
parent | 74eff33f8be680e821d9674ab12da3c0b76dad23 (diff) | |
download | libgit2-1e5dd57214dbec1b166c881c1c44c8930923da17.tar.gz |
Fix some coding style issues
Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
Diffstat (limited to 'src/git/common.h')
-rw-r--r-- | src/git/common.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/git/common.h b/src/git/common.h index 375649f87..19c6a202c 100644 --- a/src/git/common.h +++ b/src/git/common.h @@ -16,8 +16,8 @@ /** Declare a public function exported for application use. */ #ifdef __GNUC__ # define GIT_EXTERN(type) extern \ - __attribute__((visibility("default"))) \ - type + __attribute__((visibility("default"))) \ + type #else # define GIT_EXTERN(type) extern type #endif @@ -25,9 +25,9 @@ /** Declare a public TLS symbol exported for application use. */ #ifdef __GNUC__ # define GIT_EXTERN_TLS(type) extern \ - __attribute__((visibility("default"))) \ - GIT_TLS \ - type + __attribute__((visibility("default"))) \ + GIT_TLS \ + type #else # define GIT_EXTERN_TLS(type) extern GIT_TLS type #endif |