[vlc-commits] misc/events: remove trailing whitespace

Filip Roséen git at videolan.org
Mon Aug 1 09:59:07 CEST 2016


vlc | branch: master | Filip Roséen <filip at atch.se> | Sat Jul 30 13:03:25 2016 +0200| [d8df4304c6ce48aec7509e4f160cdeffd91c1381] | committer: Jean-Baptiste Kempf

misc/events: remove trailing whitespace

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

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

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

diff --git a/src/misc/events.c b/src/misc/events.c
index d924108..9c0d580 100644
--- a/src/misc/events.c
+++ b/src/misc/events.c
@@ -61,7 +61,7 @@ typedef struct vlc_event_listeners_group_t
       Correctly when vlc_event_detach was called during
       a callback */
     bool          b_sublistener_removed;
-                                         
+
 } vlc_event_listeners_group_t;
 
 static bool
@@ -147,7 +147,7 @@ int vlc_event_manager_register_event_type(
 
     listeners_group->event_type = event_type;
     ARRAY_INIT( listeners_group->listeners );
- 
+
     vlc_mutex_lock( &p_em->object_lock );
     ARRAY_APPEND( p_em->listeners_groups, listeners_group );
     vlc_mutex_unlock( &p_em->object_lock );
@@ -256,7 +256,7 @@ int vlc_event_attach( vlc_event_manager_t * p_em,
     listener = malloc(sizeof(vlc_event_listener_t));
     if( !listener )
         return VLC_ENOMEM;
- 
+
     listener->p_user_data = p_user_data;
     listener->pf_callback = pf_callback;
 



More information about the vlc-commits mailing list