summaryrefslogtreecommitdiff
path: root/progs/xdemos/pbinfo.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2003-04-21 14:51:16 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2003-04-21 14:51:16 +0000
commitd93b68f17aa4bc980fcda57e8efe29a831a44cdc (patch)
treee325e2b7db956eee0c547f843ea157921e49165d /progs/xdemos/pbinfo.c
parentff389b00a5b76e93308163fcb858913d8594af80 (diff)
silence warnings
Diffstat (limited to 'progs/xdemos/pbinfo.c')
-rw-r--r--progs/xdemos/pbinfo.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/progs/xdemos/pbinfo.c b/progs/xdemos/pbinfo.c
index e4e52810f7..f0b2f0eed4 100644
--- a/progs/xdemos/pbinfo.c
+++ b/progs/xdemos/pbinfo.c
@@ -1,4 +1,4 @@
-/* $Id: pbinfo.c,v 1.1 2002/10/05 18:30:13 brianp Exp $ */
+/* $Id: pbinfo.c,v 1.2 2003/04/21 14:51:16 brianp Exp $ */
/*
* Print list of fbconfigs and test each to see if a pbuffer can be created
@@ -49,6 +49,7 @@ PrintConfigs(Display *dpy, int screen, Bool horizFormat)
fbConfigs = glXChooseFBConfigSGIX(dpy, screen, fbAttribs, &nConfigs);
#else
/* GLX 1.3 method */
+ (void) fbAttribs;
fbConfigs = glXGetFBConfigs(dpy, screen, &nConfigs);
#endif