[UCRT] Fix a signed/unsigned comparison

This commit is contained in:
Timo Kreuzer 2024-10-13 10:15:08 +02:00
parent 2d753d95fb
commit f8e7a249ba

View file

@ -23,7 +23,7 @@ extern "C" int __cdecl _cputws(wchar_t const* string)
return -1;
// Write string to console file handle:
ptrdiff_t length = wcslen(string);
size_t length = wcslen(string);
__acrt_lock(__acrt_conio_lock);