cachegen: remove wrong/misleading error message

This commit is contained in:
Rémi Denis-Courmont 2018-05-09 20:36:07 +03:00
parent 1d233ef6be
commit 31f34113ae
1 changed files with 1 additions and 4 deletions

View File

@ -88,12 +88,9 @@ int main (int argc, char *argv[])
vlc_argv[vlc_argc] = NULL;
libvlc_instance_t *vlc = libvlc_new (vlc_argc, vlc_argv);
if (vlc != NULL)
libvlc_release (vlc);
if (vlc == NULL)
fprintf (stderr, "No plugins in %s\n", path);
if (vlc == NULL)
return 1;
libvlc_release(vlc);
}
return 0;