diff options
author | Eric Wong <normalperson@yhbt.net> | 2008-09-07 21:21:37 -0700 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-09-07 22:25:01 -0700 |
commit | 3370945c13ac29700dab2dc94aac850992573b80 (patch) | |
tree | 249f408a54e0d7341fcd477f4177002e55af625c /src | |
parent | ef90b504e87ced9cdd969963915dc712ac8b416b (diff) | |
download | mpd-3370945c13ac29700dab2dc94aac850992573b80.tar.gz mpd-3370945c13ac29700dab2dc94aac850992573b80.tar.xz mpd-3370945c13ac29700dab2dc94aac850992573b80.zip |
alsa: always print the period_time we set
Diffstat (limited to '')
-rw-r--r-- | src/audioOutputs/audioOutput_alsa.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/audioOutputs/audioOutput_alsa.c b/src/audioOutputs/audioOutput_alsa.c index 3fe8af080..62f34e854 100644 --- a/src/audioOutputs/audioOutput_alsa.c +++ b/src/audioOutputs/audioOutput_alsa.c @@ -246,9 +246,8 @@ configure_hw: goto configure_hw; } else if (err < 0) goto error; - if (retry != MPD_ALSA_RETRY_NR) - DEBUG("ALSA period_time set to %d\n", period_time); + DEBUG("ALSA period_time set to %d\n", period_time); if ((err = E(snd_pcm_hw_params_get_buffer_size, hwparams, &alsa_buffer_size)) < 0) goto error; |