Remove extra ; s where they are not allowed in strict C99

This commit is contained in:
Maarten Bosmans 2011-08-24 20:08:07 +02:00 committed by Arun Raghavan
parent 168254f3bf
commit 55fdb0162c
5 changed files with 9 additions and 9 deletions

View file

@ -120,7 +120,7 @@
#ifndef PA_GCC_WEAKREF
#if defined(__GNUC__) && defined(__ELF__) && (((__GNUC__ == 4) && (__GNUC_MINOR__ > 1)) || (__GNUC__ > 4))
/** Macro for usage of GCC's weakref attribute */
#define PA_GCC_WEAKREF(x) __attribute__((weakref(#x)));
#define PA_GCC_WEAKREF(x) __attribute__((weakref(#x)))
#endif
#endif