summaryrefslogtreecommitdiff
path: root/progs/xdemos/manywin.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/manywin.c
parentff389b00a5b76e93308163fcb858913d8594af80 (diff)
silence warnings
Diffstat (limited to 'progs/xdemos/manywin.c')
-rw-r--r--progs/xdemos/manywin.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/progs/xdemos/manywin.c b/progs/xdemos/manywin.c
index 2a28bc326b..a0286bdbcb 100644
--- a/progs/xdemos/manywin.c
+++ b/progs/xdemos/manywin.c
@@ -1,5 +1,3 @@
-/* $Id: manywin.c,v 1.5 2001/11/26 17:21:46 brianp Exp $ */
-
/*
* Create N GLX windows/contexts and render to them in round-robin
* order.
@@ -284,7 +282,7 @@ PrintInfo(const struct head *h)
printf("Name: %s\n", h->DisplayName);
printf(" Display: %p\n", (void *) h->Dpy);
printf(" Window: 0x%x\n", (int) h->Win);
- printf(" Context: 0x%x\n", (int) h->Context);
+ printf(" Context: 0x%lx\n", (long) h->Context);
printf(" GL_VERSION: %s\n", h->Version);
printf(" GL_VENDOR: %s\n", h->Vendor);
printf(" GL_RENDERER: %s\n", h->Renderer);