diff options
author | RALOVICH, Kristóf <tade60@freemail.hu> | 2008-11-04 10:43:06 +0100 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2008-11-26 10:02:10 -0700 |
commit | 00f22f972f6c96589cb9f6fa75b803c9506d61f5 (patch) | |
tree | b1011aff72ab96450d72391f7a22b4682d3bc389 | |
parent | f0d015cccbe29d18ee03ce788b65f44124fefe7f (diff) |
glx: missing static on local function
-rw-r--r-- | src/glx/x11/glx_query.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glx/x11/glx_query.c b/src/glx/x11/glx_query.c index 2ad2b8231..01911e2a3 100644 --- a/src/glx/x11/glx_query.c +++ b/src/glx/x11/glx_query.c @@ -119,7 +119,7 @@ typedef struct GLXGenericGetString * Query the Server GLX string. * This routine will allocate the necessay space for the string. */ -char * +static char * __glXGetStringFromServer(Display * dpy, int opcode, CARD32 glxCode, CARD32 for_whom, CARD32 name) { |