mirror of
https://github.com/reactos/wine.git
synced 2025-01-18 17:54:42 +00:00
include: Add back a typecast that's needed for C++.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
028b2bddfc
commit
70d8503d5e
@ -5438,7 +5438,7 @@ typedef enum _CM_ERROR_CONTROL_TYPE
|
||||
|
||||
static FORCEINLINE void *RtlSecureZeroMemory(void *buffer, SIZE_T length)
|
||||
{
|
||||
volatile char *ptr = buffer;
|
||||
volatile char *ptr = (volatile char *)buffer;
|
||||
|
||||
while (length--) *ptr++ = 0;
|
||||
return buffer;
|
||||
|
Loading…
x
Reference in New Issue
Block a user