From b51b0a847d7e7daaea69f77ab569086ef81c24a2 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 7 Mar 2001 05:06:11 +0000 Subject: fixed a bunch of g++ warnings/errors. Compiling with g++ can help find lots of potential problems --- src/mesa/main/imports.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/mesa/main/imports.c') diff --git a/src/mesa/main/imports.c b/src/mesa/main/imports.c index 6e0741ab91..d611c6e8d7 100644 --- a/src/mesa/main/imports.c +++ b/src/mesa/main/imports.c @@ -1,4 +1,4 @@ -/* $Id: imports.c,v 1.6 2001/03/02 16:01:22 brianp Exp $ */ +/* $Id: imports.c,v 1.7 2001/03/07 05:06:12 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -130,14 +130,14 @@ _mesa_fopen(__GLcontext *gc, const char *path, const char *mode) static int _mesa_fclose(__GLcontext *gc, void *stream) { - return fclose(stream); + return fclose((FILE *) stream); } static int _mesa_fprintf(__GLcontext *gc, void *stream, const char *fmt, ...) { /* XXX fix this */ - return fprintf(stream, fmt); + return fprintf((FILE *) stream, fmt); } /* XXX this really is driver-specific and can't be here */ -- cgit v1.2.3