Browse Source

Fix a strict compiler warning

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.4.1
falkTX 3 years ago
parent
commit
2c0f941f5b
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 7 additions and 0 deletions
  1. +7
    -0
      source/utils/CarlaPluginUI.cpp

+ 7
- 0
source/utils/CarlaPluginUI.cpp View File

@@ -48,7 +48,14 @@ typedef void (*EventProcPtr)(XEvent* ev);


static const uint X11Key_Escape = 9; static const uint X11Key_Escape = 9;
static bool gErrorTriggered = false; static bool gErrorTriggered = false;
# if defined(__GNUC__) && (__GNUC__ >= 5) && ! defined(__clang__)
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wzero-as-null-pointer-constant"
# endif
static pthread_mutex_t gErrorMutex = PTHREAD_MUTEX_INITIALIZER; static pthread_mutex_t gErrorMutex = PTHREAD_MUTEX_INITIALIZER;
# if defined(__GNUC__) && (__GNUC__ >= 5) && ! defined(__clang__)
# pragma GCC diagnostic pop
# endif


static int temporaryErrorHandler(Display*, XErrorEvent*) static int temporaryErrorHandler(Display*, XErrorEvent*)
{ {


Loading…
Cancel
Save