diff options
author | Brian Paul <[email protected]> | 2002-12-06 03:10:59 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-12-06 03:10:59 +0000 |
commit | 6f458650bf27fc7a86e90338cf583bd44fc630c2 (patch) | |
tree | 957e2b125599272a244748cdd227912f641f8c23 /src/mesa/main/imports.h | |
parent | 46b99c9016860af0cf4c4b19329fa82bddecb8ee (diff) |
let _mesa_problem() take variable arguments
Diffstat (limited to 'src/mesa/main/imports.h')
-rw-r--r-- | src/mesa/main/imports.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index 35c06d21538..85493651923 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -1,8 +1,8 @@ -/* $Id: imports.h,v 1.8 2002/10/30 19:49:29 brianp Exp $ */ +/* $Id: imports.h,v 1.9 2002/12/06 03:10:59 brianp Exp $ */ /* * Mesa 3-D graphics library - * Version: 5.0 + * Version: 5.1 * * Copyright (C) 1999-2002 Brian Paul All Rights Reserved. * @@ -177,7 +177,7 @@ extern void _mesa_warning( __GLcontext *gc, const char *fmtString, ... ); extern void -_mesa_problem( const __GLcontext *ctx, const char *s ); +_mesa_problem( const __GLcontext *ctx, const char *fmtString, ... ); extern void _mesa_error( __GLcontext *ctx, GLenum error, const char *fmtString, ... ); |