[vlc-devel] commit: Fixed typo into invmem error message (Christophe Courtaut )
git version control
git at videolan.org
Tue Sep 8 17:24:11 CEST 2009
vlc | branch: 1.0-bugfix | Christophe Courtaut <christophe.courtaut at gmail.com> | Tue Sep 8 14:04:12 2009 +0200| [526f40903ec697c9a1a49d9571fb050694deecb5] | committer: Rémi Denis-Courmont
Fixed typo into invmem error message
Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>
(cherry picked from commit 71ad7338b6c6b4840d51022b7c55393cf3c01177)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=526f40903ec697c9a1a49d9571fb050694deecb5
---
modules/codec/invmem.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/codec/invmem.c b/modules/codec/invmem.c
index ee9d293..c1371b7 100644
--- a/modules/codec/invmem.c
+++ b/modules/codec/invmem.c
@@ -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;
}
More information about the vlc-devel
mailing list