From: RĂ©mi Duraffort Date: Fri, 13 Nov 2009 18:32:59 +0000 (+0100) Subject: libvlc_test: fix compilation. X-Git-Tag: 1.1.0-ff~2486 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=3a676aa9e707bf29b5bc28434f75c06243de555c;p=vlc libvlc_test: fix compilation. --- diff --git a/test/libvlc/meta.c b/test/libvlc/meta.c index 3743733ee5..c969a01b97 100644 --- a/test/libvlc/meta.c +++ b/test/libvlc/meta.c @@ -44,20 +44,17 @@ static void test_meta (const char ** argv, int argc) /* Tell that we are interested in this precise meta data * This is needed to trigger meta data reading * (the first calls return NULL) */ - artist = libvlc_media_get_meta (media, libvlc_meta_Artist, &ex); - catch (); + artist = libvlc_media_get_meta (media, libvlc_meta_Artist); free (artist); /* Wait for the meta */ - while (!libvlc_media_is_preparsed (media, &ex)) + while (!libvlc_media_is_preparsed (media)) { - catch (); usleep (10000); } - artist = libvlc_media_get_meta (media, libvlc_meta_Artist, &ex); - catch (); + artist = libvlc_media_get_meta (media, libvlc_meta_Artist); const char *expected_artist = "mike";