Commit 4a7e8ae3 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix warning

parent f102b577
......@@ -151,7 +151,7 @@ static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
p_in64 = (uint64_t*)p_in;
p_out64 = (uint64_t*)p_out;
while( p_in64 < p_line_end )
while( p_in64 < (uint64_t *)p_line_end )
{
/* Do 64 pixels at a time */
*p_out64++ = ~*p_in64++; *p_out64++ = ~*p_in64++;
......
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