27 Jan
2026
27 Jan
'26
8:25 a.m.
eric pouech (@epo) commented about programs/where/main.c:
- if (argv[i][0] == '/') + if (argv[i][0] == '/' && wcslen(argv[i]) == 2) + { + switch(toupper(argv[i][1])) + { + case 'Q': flags |= OPT_QUIET; break; + default: + FIXME("Unsupported option %ls -- %c\n", argv[i], argv[i][1]); + return 1; + + } + } + else if (argv[i][0] == '/') { - FIXME("Unsupported option %ls\n", argv[i]); + FIXME("Unsupported option %ls len %lld\n", argv[i], (long long)wcslen(argv[i])); %Iu
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/9975#note_128111