From 57a38debe1a579df9460adbfbd8a14253b58b141 Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Wed, 8 Apr 2009 18:15:56 +0200 Subject: [PATCH] aplay/arecord: remove debug printfs introduced by previous patch Signed-off-by: Jaroslav Kysela --- aplay/aplay.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/aplay/aplay.c b/aplay/aplay.c index 90824d0..a6cb32b 100644 --- a/aplay/aplay.c +++ b/aplay/aplay.c @@ -1150,7 +1150,6 @@ static void xrun(void) struct timespec now, diff, tstamp; clock_gettime(CLOCK_MONOTONIC, &now); snd_pcm_status_get_trigger_htstamp(status, &tstamp); - printf("AAA: %li %li\n" "BBB\n", tstamp.tv_sec, now.tv_nsec); timermsub(&now, &tstamp, &diff); fprintf(stderr, _("%s!!! (at least %.3f ms long)\n"), stream == SND_PCM_STREAM_PLAYBACK ? _("underrun") : _("overrun"), @@ -1162,7 +1161,6 @@ static void xrun(void) struct timeval now, diff, tstamp; gettimeofday(&now, 0); snd_pcm_status_get_trigger_tstamp(status, &tstamp); - printf("AAA: %li %li\n", tstamp.tv_sec, now.tv_sec); timersub(&now, &tstamp, &diff); fprintf(stderr, _("%s!!! (at least %.3f ms long)\n"), stream == SND_PCM_STREAM_PLAYBACK ? _("underrun") : _("overrun"),