From 8a4b36de05a133c1c9527836ca58bf8ebdf229bd Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Mon, 28 Nov 2011 17:47:59 -0800 Subject: [PATCH] glx: Don't use 'new' as a function parameter name Using 'new' as a function parameter name prevents including glxclient.h the unit tests (future patch) that use the Google C++ Testing Framework. Signed-off-by: Ian Romanick --- src/glx/glxclient.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/glx/glxclient.h b/src/glx/glxclient.h index 13cd939cd2a..f8ae450f09c 100644 --- a/src/glx/glxclient.h +++ b/src/glx/glxclient.h @@ -215,7 +215,7 @@ struct glx_context_vtable { void (*destroy)(struct glx_context *ctx); int (*bind)(struct glx_context *context, struct glx_context *old, GLXDrawable draw, GLXDrawable read); - void (*unbind)(struct glx_context *context, struct glx_context *new); + void (*unbind)(struct glx_context *context, struct glx_context *new_ctx); void (*wait_gl)(struct glx_context *ctx); void (*wait_x)(struct glx_context *ctx); void (*use_x_font)(struct glx_context *ctx, -- 2.30.2