glu: Fix deprecated conversion from string constant to ‘char*’ warning.

This commit is contained in:
José Fonseca 2011-11-09 09:08:58 +00:00
parent 60302f83e2
commit 9b8ee08248
2 changed files with 2 additions and 2 deletions

View File

@ -119,7 +119,7 @@ Bin::adopt()
*/
void
Bin::show( char *name )
Bin::show( const char *name )
{
#ifndef NDEBUG
_glu_dprintf( "%s\n", name );

View File

@ -57,7 +57,7 @@ public:
int numarcs( void );
void adopt( void );
void markall( void );
void show( char * );
void show( const char * );
void listBezier( void );
};