common: avoid silly compiler warning due to define redefinition

comma was updated in plugings (due to clang reformat)
This commit is contained in:
Gregory Hainaut 2016-09-08 19:20:24 +02:00
parent aba0c733cd
commit b282909c9e
1 changed files with 2 additions and 2 deletions

View File

@ -35,11 +35,11 @@
#include <gtk/gtk.h> #include <gtk/gtk.h>
#include <cstring> #include <cstring>
#define EXPORT_C_(type) extern "C" __attribute__((stdcall,externally_visible,visibility("default"))) type #define EXPORT_C_(type) extern "C" __attribute__((stdcall, externally_visible, visibility("default"))) type
#else #else
#define EXPORT_C_(type) extern "C" __attribute__((stdcall,externally_visible,visibility("default"))) type #define EXPORT_C_(type) extern "C" __attribute__((stdcall, externally_visible, visibility("default"))) type
#endif #endif