From: Rémi Denis-Courmont Date: Sat, 10 Jan 2009 17:54:15 +0000 (+0200) Subject: Fix trivial syntax errors X-Git-Tag: 1.0.0-pre1~1421 X-Git-Url: https://git.videolan.org/gitweb.cgi/vlc.git/?p=vlc.git;p=vlc.git;a=commitdiff_plain;h=903781dfe758a088b0f4a3d84e0e4b3a45223211 Fix trivial syntax errors --- diff --git a/src/misc/events.c b/src/misc/events.c index a0a4498025..2f83006ed9 100644 --- a/src/misc/events.c +++ b/src/misc/events.c @@ -70,7 +70,7 @@ typedef struct vlc_event_listeners_group_t } vlc_event_listeners_group_t; #ifdef DEBUG_EVENT -static const char ppsz_event_type_to_name[][33] = +static const char ppsz_event_type_to_name[][40] = { [vlc_InputStateChanged] = "vlc_InputStateChanged", [vlc_InputSelectedStreamChanged] = "vlc_InputSelectedStreamChanged", @@ -84,8 +84,8 @@ static const char ppsz_event_type_to_name[][33] = [vlc_InputItemErrorWhenReadingChanged] = "vlc_InputItemErrorWhenReadingChanged", [vlc_ServicesDiscoveryItemAdded] = "vlc_ServicesDiscoveryItemAdded", - [vlc_ServicesDiscoveryItemRemoved] = "vlc_ServicesDiscoveryItemRemoved" - [vlc_ServicesDiscoveryStarted] = "vlc_ServicesDiscoveryStarted" + [vlc_ServicesDiscoveryItemRemoved] = "vlc_ServicesDiscoveryItemRemoved", + [vlc_ServicesDiscoveryStarted] = "vlc_ServicesDiscoveryStarted", [vlc_ServicesDiscoveryEnded] = "vlc_ServicesDiscoveryEnded" }; #endif