From 184deb9bc325eb7aa7eb7b7d4f98aa917f0269cb Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Wed, 24 Jun 2009 10:40:05 +1000 Subject: [PATCH] GLX: make function static. This function isn't called from anywhere else and I don't think it shuold be. --- glx/glxext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glx/glxext.c b/glx/glxext.c index a571ec99a..19d70d495 100644 --- a/glx/glxext.c +++ b/glx/glxext.c @@ -171,7 +171,7 @@ void __glXAddToContextList(__GLXcontext *cx) glxAllContexts = cx; } -void __glXRemoveFromContextList(__GLXcontext *cx) +static void __glXRemoveFromContextList(__GLXcontext *cx) { __GLXcontext *c, *prev;