Silence gcc 3.4 warnings on ReactOS. Mostly unused var warnings. (patch 1015696)

This commit is contained in:
Brian Paul
2004-08-25 15:59:48 +00:00
parent 866286936a
commit a6c423d956
55 changed files with 464 additions and 118 deletions

View File

@@ -167,6 +167,7 @@ static struct program * _mesa_init_program_struct( GLcontext *ctx,
struct program *prog,
GLenum target, GLuint id)
{
(void) ctx;
if (prog) {
prog->Id = id;
prog->Target = target;
@@ -239,6 +240,7 @@ _mesa_new_program(GLcontext *ctx, GLenum target, GLuint id)
void
_mesa_delete_program(GLcontext *ctx, struct program *prog)
{
(void) ctx;
ASSERT(prog);
if (prog->String)