winmm/wineoss: Cast-qual warning fix.

This commit is contained in:
Andrew Talbot 2006-11-23 20:29:00 +00:00 committed by Alexandre Julliard
parent d9cdd23411
commit 89bb54601f
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}