diff options
author | Eric Engestrom <eric@igalia.com> | 2023-11-26 08:22:01 +0000 |
---|---|---|
committer | Marge Bot <emma+marge@anholt.net> | 2024-04-30 16:22:50 +0000 |
commit | 21b527632ec23038cde9cbc83ce40bebc15931e5 (patch) | |
tree | 572da02ba2cd437c9cbf9f64c901484d69e4948b /src/glx | |
parent | 11b060f41acf8fb297b64757f49b7cf0a8f8401c (diff) |
egl+glx: fix two #ifdef that should be #if like the rest
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28947>
Diffstat (limited to 'src/glx')
-rw-r--r-- | src/glx/glxclient.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glx/glxclient.h b/src/glx/glxclient.h index bf3e696fcaf..e9c7bf9ce6b 100644 --- a/src/glx/glxclient.h +++ b/src/glx/glxclient.h @@ -35,7 +35,7 @@ #include "loader.h" #include "glxextensions.h" -#if defined(USE_LIBGLVND) +#if USE_LIBGLVND #define _GLX_PUBLIC _X_HIDDEN #else #define _GLX_PUBLIC _X_EXPORT |