]> git.sesse.net Git - vlc/blobdiff - src/interface/interface.c
Replace function callback by variable callback.
[vlc] / src / interface / interface.c
index a01fd64fe895160b60216c0e476659b530030dc3..36a57eb795a4d780511c71fb97ef22a5406b283b 100644 (file)
@@ -98,8 +98,8 @@ intf_thread_t* __intf_Create( vlc_object_t *p_this, const char *psz_module )
     p_intf->pf_request_window = NULL;
     p_intf->pf_release_window = NULL;
     p_intf->pf_control_window = NULL;
-    p_intf->pf_interact       = NULL;
     p_intf->b_play = VLC_FALSE;
+    p_intf->b_interaction = VLC_FALSE;
 
     /* Choose the best module */
     p_intf->p_module = module_Need( p_intf, "interface", psz_module, 0 );