Fixed another invalid encoding on string literal

This commit is contained in:
Xavi Del Campo 2020-01-31 22:17:43 +01:00
parent 51e31fe4cb
commit 6f225f14b3
1 changed files with 61 additions and 61 deletions

View File

@ -72,7 +72,7 @@ int main( int argc, char *argv[] )
fp = fopen(argv[1], "rb");
if (fp == NULL)
{
printf("Can´t open %s. Aborting.\n", argv[1]);
printf("Can't open %s. Aborting.\n", argv[1]);
return -2;
}