]> git.sesse.net Git - vlc/commitdiff
Add a warning
authorRémi Denis-Courmont <remi@remlab.net>
Mon, 21 Dec 2009 19:45:52 +0000 (21:45 +0200)
committerRémi Denis-Courmont <remi@remlab.net>
Mon, 21 Dec 2009 19:45:52 +0000 (21:45 +0200)
src/misc/probe.c

index 79922fa66ee0f2eb3482c63fdee3ab926c403110..c3de3a47f8d6b68aaaf60df74e68292cdb1323aa 100644 (file)
@@ -42,7 +42,10 @@ void *vlc_probe (vlc_object_t *obj,
 
     module_t *mod = module_need (probe, capability, NULL, false);
     if (mod != NULL)
+    {
+        msg_Warn (probe, "probing halted");
         module_unneed (probe, mod);
+    }
 
     void *ret = probe->list;
     *pcount = probe->count;