From 1b2976f79bd06c392a7d49d14a23637d30fbb8e6 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Mon, 26 Nov 2001 17:21:46 +0000 Subject: [PATCH] fix some warnings --- progs/xdemos/manywin.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/progs/xdemos/manywin.c b/progs/xdemos/manywin.c index ea5ab65a6ca..2a28bc326b2 100644 --- a/progs/xdemos/manywin.c +++ b/progs/xdemos/manywin.c @@ -1,4 +1,4 @@ -/* $Id: manywin.c,v 1.4 2001/04/27 21:19:13 brianp Exp $ */ +/* $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 @@ -29,6 +29,7 @@ #include #include #include +#include #include @@ -281,7 +282,7 @@ static void PrintInfo(const struct head *h) { printf("Name: %s\n", h->DisplayName); - printf(" Display: %p\n", h->Dpy); + printf(" Display: %p\n", (void *) h->Dpy); printf(" Window: 0x%x\n", (int) h->Win); printf(" Context: 0x%x\n", (int) h->Context); printf(" GL_VERSION: %s\n", h->Version); -- 2.30.2