Commit 3d82d569 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

memcpy: Flag an unused param in memcpyaltivec.

parent e626c159
...@@ -48,6 +48,7 @@ static void * fast_memcpy ( void * to, const void * from, size_t len ); ...@@ -48,6 +48,7 @@ static void * fast_memcpy ( void * to, const void * from, size_t len );
*****************************************************************************/ *****************************************************************************/
static int Activate ( vlc_object_t *p_this ) static int Activate ( vlc_object_t *p_this )
{ {
VLC_UNUSED(p_this);
vlc_fastmem_register( fast_memcpy, NULL ); vlc_fastmem_register( fast_memcpy, NULL );
return VLC_SUCCESS; return VLC_SUCCESS;
} }
......
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