Fixed invalid encoding on string literal

This commit is contained in:
Xavi Del Campo 2020-01-31 22:16:02 +01:00
parent 37d37cb102
commit 51e31fe4cb
1 changed files with 33 additions and 33 deletions

View File

@ -97,7 +97,7 @@ int main( int argc, char *argv[] )
pcm = fopen( argv[2], "wb" );
if ( pcm == NULL ) {
printf( "can´t write output file\n" );
printf( "can't write output file\n" );
return( -8 );
}