aboutsummaryrefslogtreecommitdiff
path: root/sources/host-tools/toolbox/cmp_win.c
diff options
context:
space:
mode:
Diffstat (limited to 'sources/host-tools/toolbox/cmp_win.c')
-rw-r--r--sources/host-tools/toolbox/cmp_win.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/host-tools/toolbox/cmp_win.c b/sources/host-tools/toolbox/cmp_win.c
index 2d1ec82dc..36a73a84f 100644
--- a/sources/host-tools/toolbox/cmp_win.c
+++ b/sources/host-tools/toolbox/cmp_win.c
@@ -61,12 +61,12 @@ int main(void)
const wchar_t* filename2 = argv[1];
FILE *f1 = _wfopen(filename1, L"rb");
if (!f1) {
- wprintf(L"ERROR: can't open file %lS\n", filename1);
+ wprintf(L"ERROR: can't open file %ls\n", filename1);
exit(1);
}
FILE *f2 = _wfopen(filename2, L"rb");
if (!f2) {
- wprintf(L"ERROR: can't open file %lS\n", filename2);
+ wprintf(L"ERROR: can't open file %ls\n", filename2);
fclose(f1);
exit(1);
}