diff options
author | Vinson Lee <[email protected]> | 2009-11-20 12:48:44 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2009-11-20 12:49:50 -0800 |
commit | 02c3e0b82da6877a7e170bb3fafd591bc2d76115 (patch) | |
tree | 06e2338b7eee2e93028c383ee9cb65acb0b1da4e /progs/tests/sharedtex.c | |
parent | c4e8918cd248189d43cdc8df9f9f0450040261c5 (diff) |
progs/tests: Silence unused value warnings in sharedtex.c.
Diffstat (limited to 'progs/tests/sharedtex.c')
-rw-r--r-- | progs/tests/sharedtex.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/progs/tests/sharedtex.c b/progs/tests/sharedtex.c index c07ebd719c7..2337b88d3ff 100644 --- a/progs/tests/sharedtex.c +++ b/progs/tests/sharedtex.c @@ -424,13 +424,13 @@ main(int argc, char *argv[]) { const char *dpyName = XDisplayName(NULL); - struct window *h0, *h1, *h2, *h3; + struct window *h0; /* four windows and contexts sharing display lists and texture objects */ h0 = AddWindow(dpyName, 10, 10, NULL); - h1 = AddWindow(dpyName, 330, 10, h0); - h2 = AddWindow(dpyName, 10, 350, h0); - h3 = AddWindow(dpyName, 330, 350, h0); + (void) AddWindow(dpyName, 330, 10, h0); + (void) AddWindow(dpyName, 10, 350, h0); + (void) AddWindow(dpyName, 330, 350, h0); InitGLstuff(h0); |