mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 17:12:58 +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;
|
return -1;
|
||||||
|
|
||||||
// Write string to console file handle:
|
// Write string to console file handle:
|
||||||
ptrdiff_t length = wcslen(string);
|
size_t length = wcslen(string);
|
||||||
|
|
||||||
__acrt_lock(__acrt_conio_lock);
|
__acrt_lock(__acrt_conio_lock);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue