Commit 71ad7338 authored by Christophe Courtaut's avatar Christophe Courtaut Committed by Rémi Denis-Courmont

Fixed typo into invmem error message

Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent 907e42f1
...@@ -128,7 +128,7 @@ static int OpenDecoder( vlc_object_t *p_this ) ...@@ -128,7 +128,7 @@ static int OpenDecoder( vlc_object_t *p_this )
p_sys->i_height = var_CreateGetInteger( p_this, "invmem-height" ); p_sys->i_height = var_CreateGetInteger( p_this, "invmem-height" );
if( p_sys->i_width == 0 || p_sys->i_height == 0 ) if( p_sys->i_width == 0 || p_sys->i_height == 0 )
{ {
msg_Err( p_dec, "--vmem-width and --vmem-height must be > 0" ); msg_Err( p_dec, "--invmem-width and --invmem-height must be > 0" );
free( p_sys ); free( p_sys );
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