diff options
author | Brian Paul <[email protected]> | 2000-06-27 17:04:43 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-06-27 17:04:43 +0000 |
commit | 02e8a035934a7400d0194687061107bdaa1bba77 (patch) | |
tree | ab0b06c533e6f6fb2d409995f5b01423f29db105 /progs/demos/stex3d.c | |
parent | 9e7f9b3e99cf4963e3bc684b5f9fc095be059a82 (diff) |
fixed compiler warnings
Diffstat (limited to 'progs/demos/stex3d.c')
-rw-r--r-- | progs/demos/stex3d.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/progs/demos/stex3d.c b/progs/demos/stex3d.c index 2350532c981..bab9035287b 100644 --- a/progs/demos/stex3d.c +++ b/progs/demos/stex3d.c @@ -1,4 +1,4 @@ -/* $Id: stex3d.c,v 1.4 2000/03/22 19:48:57 brianp Exp $ */ +/* $Id: stex3d.c,v 1.5 2000/06/27 17:04:43 brianp Exp $ */ /*----------------------------- * stex3d.c GL example of the mesa 3d-texture extention to simulate procedural @@ -17,6 +17,9 @@ /* * $Log: stex3d.c,v $ + * Revision 1.5 2000/06/27 17:04:43 brianp + * fixed compiler warnings + * * Revision 1.4 2000/03/22 19:48:57 brianp * converted from GL_EXT_texture3D to GL 1.2 * @@ -385,7 +388,7 @@ void resize(int w, int h) glTranslatef(0,0,-5); } -void cleanEverything(void) +static void cleanEverything(void) { /* free(voxels); */ } |