Piotr Caban (@piotr) commented about dlls/msvcrt/tests/string.c:
ret = p_tolower((unsigned char)0xD0); ok(ret == 0xF0, "ret = %x\n", ret);
- ok(setlocale(LC_ALL, ".932") != NULL, "setlocale failed.\n");
- ret = p_tolower((signed char)0xd0);
- ok(ret == 0xd0, "Got %#x.\n", ret);
- ret = p_tolower((unsigned char)0xd0);
- todo_wine ok(ret == (unsigned char)0xd0, "Got %#x.\n", ret);
```suggestion:-1+0 ret = p_tolower(0xd0); todo_wine ok(ret == 0xd0, "Got %#x.\n", ret); ```