]> git.sesse.net Git - vlc/blobdiff - test/native/threads.c
Move last.fm password from PasswordShowOnEdit to Password.
[vlc] / test / native / threads.c
index d49be796afe158c16a66f488d4d716864eb7c2fb..5220596f690d8ca3e1af8d508ca7dc7867311c78 100644 (file)
@@ -1,4 +1,8 @@
 #include "../pyunit.h"
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <vlc/vlc.h>
 
 PyObject *threadvar_test( PyObject *self, PyObject *args )
@@ -13,7 +17,7 @@ PyObject *threadvar_test( PyObject *self, PyObject *args )
     vlc_threadvar_create( NULL, &key2 );
     vlc_threadvar_set( &key2, NULL );
     ASSERT( vlc_threadvar_get( &key2 ) == NULL, "key2 does not match" );
-    
     Py_INCREF( Py_None );
     return Py_None;
 }