From 665de91347ba04def830e4ee064da8a63c0168ea Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 9 Jun 2016 17:42:13 +0100 Subject: [PATCH] gstconfig.h.in: indent #if #else jungle for better readability --- gst/gstconfig.h.in | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/gst/gstconfig.h.in b/gst/gstconfig.h.in index 5e78b6d..41f76b6 100644 --- a/gst/gstconfig.h.in +++ b/gst/gstconfig.h.in @@ -134,19 +134,19 @@ * On other platforms, this gets defined as a no-op. */ #ifdef _WIN32 /* Both 32-bit and 64-bit; both GCC and MSVC */ -#define GST_PLUGIN_EXPORT __declspec(dllexport) extern -#ifdef GST_EXPORTS -#define GST_EXPORT __declspec(dllexport) extern -#else -#define GST_EXPORT __declspec(dllimport) extern -#endif +# define GST_PLUGIN_EXPORT __declspec(dllexport) extern +# ifdef GST_EXPORTS +# define GST_EXPORT __declspec(dllexport) extern +# else +# define GST_EXPORT __declspec(dllimport) extern +# endif #else /* !_WIN32 */ -#define GST_PLUGIN_EXPORT -#if (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)) -#define GST_EXPORT extern __attribute__ ((visibility ("default"))) -#else -#define GST_EXPORT extern -#endif +# define GST_PLUGIN_EXPORT +# if (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)) +# define GST_EXPORT extern __attribute__ ((visibility ("default"))) +# else +# define GST_EXPORT extern +# endif #endif #endif /* __GST_CONFIG_H__ */ -- 2.7.4