Skip to content

Commit

Permalink
Fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
NayamAmarshe committed Apr 21, 2024
1 parent 273fc3e commit eed1516
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@ int main(int argc, char **argv)
compression = _wtof(optarg);
if (compression < 0 || compression > 100)
{
fwprintf(stderr, "🚨 Error: Invalid compression value, it should be between 0 and 100!\n");
fwprintf(stderr, L"🚨 Error: Invalid compression value, it should be between 0 and 100!\n");
return -1;
}
compression = round(compression / 10.0) * 10;
Expand Down

0 comments on commit eed1516

Please sign in to comment.