]> git.sesse.net Git - vlc/blobdiff - src/misc/win32_specific.c
Typo
[vlc] / src / misc / win32_specific.c
index d984aada1725945de00c293182bcd9e629c9b538..96bb776e6c88405836deb1646daef8aefa4c4c79 100644 (file)
@@ -27,7 +27,7 @@
 #endif
 
 #define UNICODE
-#include <vlc/vlc.h>
+#include <vlc_common.h>
 #include "../libvlc.h"
 #include <vlc_playlist.h>
 #include <vlc_charset.h>
@@ -170,8 +170,10 @@ void system_Configure( libvlc_int_t *p_this, int *pi_argc, const char *ppsz_argv
         if( GetLastError() != ERROR_ALREADY_EXISTS )
         {
             /* We are the 1st instance. */
+            static const char typename[] = "ipc helper";
             vlc_object_t *p_helper =
-             (vlc_object_t *)vlc_object_create( p_this, sizeof(vlc_object_t) );
+                vlc_custom_create( p_this, sizeof(vlc_object_t),
+                                   VLC_OBJECT_GENERIC, typename );
 
             /* Run the helper thread */
             if( vlc_thread_create( p_helper, "IPC helper", IPCHelperThread,