[vlc-devel] commit: video_filter/logo: fix compilation. ( Rémi Duraffort )
git version control
git at videolan.org
Tue Mar 31 18:58:02 CEST 2009
vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Tue Mar 31 18:57:20 2009 +0200| [e1fd82bb01af2754d5fdc0a9edc4dd2b68040f6e] | committer: Rémi Duraffort
video_filter/logo: fix compilation.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e1fd82bb01af2754d5fdc0a9edc4dd2b68040f6e
---
modules/video_filter/logo.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/video_filter/logo.c b/modules/video_filter/logo.c
index 881e88e..598cca7 100644
--- a/modules/video_filter/logo.c
+++ b/modules/video_filter/logo.c
@@ -921,7 +921,7 @@ static int LogoCallback( vlc_object_t *p_this, char const *psz_var,
{
p_sys->posx = newval.i_int;
}
- else if ( !strncmp( psz_var, "logo-y" ) )
+ else if ( !strcmp( psz_var, "logo-y" ) )
{
p_sys->posy = newval.i_int;
}
More information about the vlc-devel
mailing list