]> git.sesse.net Git - vlc/commitdiff
* ./modules/video_filter/transform.c: fixed a stupid typo preventing
authorSam Hocevar <sam@videolan.org>
Sun, 9 Feb 2003 12:19:09 +0000 (12:19 +0000)
committerSam Hocevar <sam@videolan.org>
Sun, 9 Feb 2003 12:19:09 +0000 (12:19 +0000)
    initialization of the plugin.

modules/video_filter/transform.c

index dd960741d57f74be0e9ce6315083be2973832394..b61eaac158ada1ade42adf82a5e03486df348c98 100644 (file)
@@ -2,7 +2,7 @@
  * transform.c : transform image plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000, 2001, 2002, 2003 VideoLAN
- * $Id: transform.c,v 1.7 2003/01/17 16:18:03 sam Exp $
+ * $Id: transform.c,v 1.8 2003/02/09 12:19:09 sam Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -153,7 +153,7 @@ static int Create( vlc_object_t *p_this )
         free( psz_method );
     }
 
-    return VLC_EGENERIC;
+    return VLC_SUCCESS;
 }
 
 /*****************************************************************************