]> git.sesse.net Git - vlc/commitdiff
Fixed typo into invmem error message
authorChristophe Courtaut <christophe.courtaut@gmail.com>
Tue, 8 Sep 2009 12:04:12 +0000 (14:04 +0200)
committerRémi Denis-Courmont <remi@remlab.net>
Tue, 8 Sep 2009 15:23:39 +0000 (18:23 +0300)
Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
modules/codec/invmem.c

index 0fede71809f867de63346cf7df30609adff8defc..85c37234399d8f111ac179695f3c6b544f2b111f 100644 (file)
@@ -128,7 +128,7 @@ static int OpenDecoder( vlc_object_t *p_this )
     p_sys->i_height = var_CreateGetInteger( p_this, "invmem-height" );
     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 );
         return VLC_EGENERIC;
     }