From: Ian Romanick Date: Wed, 21 Jan 2004 16:26:05 +0000 (+0000) Subject: Silence a compiler warning DRI builds using gcc3. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=34a78574114d5f3ff814cf55c222fe26bded334b;p=mesa.git Silence a compiler warning DRI builds using gcc3. --- diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c index 162920eb9be..386744fdea9 100644 --- a/src/mesa/main/dlist.c +++ b/src/mesa/main/dlist.c @@ -5075,7 +5075,7 @@ static void GLAPIENTRY save_MultiTexCoord4fv( GLenum target, const GLfloat *v ) } -static void enum_error() +static void enum_error( void ) { GET_CURRENT_CONTEXT( ctx ); _mesa_error( ctx, GL_INVALID_ENUM, "VertexAttribfNV" );