From b282909c9e9dd3b2bec4ab9f90be1a896d1c825e Mon Sep 17 00:00:00 2001 From: Gregory Hainaut Date: Thu, 8 Sep 2016 19:20:24 +0200 Subject: [PATCH] common: avoid silly compiler warning due to define redefinition comma was updated in plugings (due to clang reformat) --- common/include/PS2Eext.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/include/PS2Eext.h b/common/include/PS2Eext.h index 289c1e8646..2c0412517e 100644 --- a/common/include/PS2Eext.h +++ b/common/include/PS2Eext.h @@ -35,11 +35,11 @@ #include #include -#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 -#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