mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-27 11:53:32 +00:00
[UCRT] Fix a signed/unsigned comparison
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user