[vlc-devel] commit: Fix trivial syntax errors ( Rémi Denis-Courmont )

git version control git at videolan.org
Sat Jan 10 19:10:13 CET 2009


vlc | branch: master | Rémi Denis-Courmont <rdenis at simphalempin.com> | Sat Jan 10 19:54:15 2009 +0200| [903781dfe758a088b0f4a3d84e0e4b3a45223211] | committer: Rémi Denis-Courmont 

Fix trivial syntax errors

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=903781dfe758a088b0f4a3d84e0e4b3a45223211
---

 src/misc/events.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/misc/events.c b/src/misc/events.c
index a0a4498..2f83006 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




More information about the vlc-devel mailing list