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

amd64 format fix

parent 14984575
...@@ -451,7 +451,7 @@ static int exec_DataSharedMem( filter_t *p_filter, ...@@ -451,7 +451,7 @@ static int exec_DataSharedMem( filter_t *p_filter,
if( (size_t)p_params->i_width > i_size ) if( (size_t)p_params->i_width > i_size )
{ {
msg_Err( p_filter, msg_Err( p_filter,
"Insufficient data in shared memory. need %d, got %d", "Insufficient data in shared memory. need %d, got %zu",
p_params->i_width, i_size ); p_params->i_width, i_size );
return VLC_EGENERIC; return VLC_EGENERIC;
} }
......
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