Commit 89bb5460 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

winmm/wineoss: Cast-qual warning fix.

parent d9cdd234
......@@ -853,7 +853,7 @@ static void * my_memcpy(void * dst, const void * src, int length)
{
int i;
for (i = 0; i < length; i++)
((char *)dst)[i] = ((char *)src)[i];
((char *)dst)[i] = ((const char *)src)[i];
return dst;
}
......
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