mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 14:03:58 +00:00
Fix an fprintf() type warning in set_color.c by using "%s".
This commit is contained in:
parent
1bd09bfd40
commit
7cfac5bb59
1 changed files with 1 additions and 1 deletions
|
@ -332,7 +332,7 @@ int main( int argc, char **argv )
|
|||
|
||||
if( del_curterm( cur_term ) == ERR )
|
||||
{
|
||||
fprintf( stderr, _("Error while closing terminfo") );
|
||||
fprintf( stderr, "%s", _("Error while closing terminfo") );
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue