[UCRT] Fix a signed/unsigned comparison

This commit is contained in:
Timo Kreuzer
2025-01-16 14:18:53 +02:00
parent 2d753d95fb
commit f8e7a249ba
+1 -1
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);