Commit 70d8503d authored by Alexandre Julliard's avatar Alexandre Julliard

include: Add back a typecast that's needed for C++.

parent 028b2bdd
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment