[vlc-commits] input: remove stray debug
Thomas Guillem
git at videolan.org
Thu Jul 12 17:19:47 CEST 2018
vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Thu Jul 12 17:19:35 2018 +0200| [ef346f2091e3c395d6e50a5c62e2f0f7e51d80fd] | committer: Thomas Guillem
input: remove stray debug
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ef346f2091e3c395d6e50a5c62e2f0f7e51d80fd
---
src/input/event.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/src/input/event.c b/src/input/event.c
index cdd24e85f4..84fb03a117 100644
--- a/src/input/event.c
+++ b/src/input/event.c
@@ -44,7 +44,6 @@ static void input_SendEvent( input_thread_t *p_input,
void input_SendEventDead( input_thread_t *p_input )
{
-fprintf(stderr, "input_SendEventDead\n");
input_SendEvent( p_input, &(struct vlc_input_event) {
.type = INPUT_EVENT_DEAD,
});
@@ -138,7 +137,6 @@ void input_SendEventSignal( input_thread_t *p_input, double f_quality,
void input_SendEventState( input_thread_t *p_input, int i_state )
{
-fprintf(stderr, "input_SendEventState: %d\n", i_state);
input_SendEvent( p_input, &(struct vlc_input_event) {
.type = INPUT_EVENT_STATE,
.state = i_state
More information about the vlc-commits
mailing list