mirror of
https://github.com/reactos/reactos.git
synced 2025-05-28 13:38:19 +00:00
[UCRT] Fix a signed/unsigned comparison
This commit is contained in:
parent
2d753d95fb
commit
f8e7a249ba
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue