From 656f28de2f657ab4ca9a6c933d7fbd15671e4ea9 Mon Sep 17 00:00:00 2001 From: Robert Bragg Date: Wed, 25 May 2011 01:47:34 +0100 Subject: [PATCH] glx: make sure _cogl_winsys_get_proc_address is static Make sure not to export _cogl_winsys_get_proc_address outside of cogl-winsys-glx.c --- cogl/winsys/cogl-winsys-glx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogl/winsys/cogl-winsys-glx.c b/cogl/winsys/cogl-winsys-glx.c index 74a366834..82008d62d 100644 --- a/cogl/winsys/cogl-winsys-glx.c +++ b/cogl/winsys/cogl-winsys-glx.c @@ -137,7 +137,7 @@ static const CoglFeatureData winsys_feature_data[] = #include "cogl-winsys-glx-feature-functions.h" }; -CoglFuncPtr +static CoglFuncPtr _cogl_winsys_get_proc_address (const char *name) { static GLXGetProcAddressProc get_proc_func = NULL;