Fix an fprintf() type warning in set_color.c by using "%s".

This commit is contained in:
Ben Hoskings 2009-12-03 22:01:59 +11:00 committed by Suraj N. Kurapati
parent 1bd09bfd40
commit 7cfac5bb59

View file

@ -332,7 +332,7 @@ int main( int argc, char **argv )
if( del_curterm( cur_term ) == ERR ) if( del_curterm( cur_term ) == ERR )
{ {
fprintf( stderr, _("Error while closing terminfo") ); fprintf( stderr, "%s", _("Error while closing terminfo") );
} }
} }