]> git.sesse.net Git - vlc/commitdiff
Fix debug message
authorFabio Ritrovato <sephiroth87@videolan.org>
Mon, 22 Feb 2010 19:30:02 +0000 (20:30 +0100)
committerFabio Ritrovato <sephiroth87@videolan.org>
Mon, 22 Feb 2010 19:37:58 +0000 (20:37 +0100)
modules/misc/lua/services_discovery.c

index ebe248419113825534413a0b8486ec344c637811..dc709663d10d862433000ef397fe12aee350e647 100644 (file)
@@ -172,6 +172,6 @@ static void* Run( void *data )
         lua_pop( L, 1 );
         return NULL;
     }
-    msg_Dbg( p_sd, "LuaSD script loaded: %s", p_sd->psz_name );
+    msg_Dbg( p_sd, "LuaSD script loaded: %s", p_sys->psz_filename );
     return NULL;
 }