From 089a1b0f9fa2e80457dc3d5f05c84565c9113a21 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Mon, 19 Feb 2018 15:18:10 +0000 Subject: [PATCH] glx: set the version we implement in GlxServerExports Set the major/minor version it's currently implemented, not the one provided by the GLXSERVER_VENDOR_ABI_{MAJOR,MINOR}_VERSION macros. Those are identical for now, but can change in the future. Signed-off-by: Emil Velikov Reviewed-by: Adam Jackson --- glx/vndext.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glx/vndext.c b/glx/vndext.c index aeefd7519..c8d753234 100644 --- a/glx/vndext.c +++ b/glx/vndext.c @@ -277,8 +277,8 @@ GlxFreeServerImports(GlxServerImports *imports) } _X_EXPORT const GlxServerExports glxServer = { - .majorVersion = GLXSERVER_VENDOR_ABI_MAJOR_VERSION, - .minorVersion = GLXSERVER_VENDOR_ABI_MINOR_VERSION, + .majorVersion = 0, + .minorVersion = 0, .extensionInitCallback = &vndInitCallbackList,