Detlef Riekenberg : winealsa.drv: Fix a typo in an error message.

Alexandre Julliard julliard at winehq.org
Wed Aug 20 08:13:42 CDT 2008


Module: wine
Branch: master
Commit: 2dedf4c097d922da4d03d94a937b38e3077e20cc
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=2dedf4c097d922da4d03d94a937b38e3077e20cc

Author: Detlef Riekenberg <wine.dev at web.de>
Date:   Tue Aug 19 23:45:47 2008 +0200

winealsa.drv: Fix a typo in an error message.

---

 dlls/winealsa.drv/waveout.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/winealsa.drv/waveout.c b/dlls/winealsa.drv/waveout.c
index 62e7f4f..6dfb088 100644
--- a/dlls/winealsa.drv/waveout.c
+++ b/dlls/winealsa.drv/waveout.c
@@ -764,7 +764,7 @@ static DWORD wodOpen(WORD wDevID, LPWAVEOPENDESC lpDesc, DWORD dwFlags)
     EXIT_ON_ERROR( snd_pcm_sw_params_set_silence_size(pcm, sw_params, 0), MMSYSERR_ERROR, "unable to set silence size");
     EXIT_ON_ERROR( snd_pcm_sw_params_set_avail_min(pcm, sw_params, period_size), MMSYSERR_ERROR, "unable to set avail min");
     EXIT_ON_ERROR( snd_pcm_sw_params_set_silence_threshold(pcm, sw_params, 0), MMSYSERR_ERROR, "unable to set silence threshold");
-    EXIT_ON_ERROR( snd_pcm_sw_params_set_stop_threshold(pcm, sw_params, boundary), MMSYSERR_ERROR, "unable to set xrun mode");
+    EXIT_ON_ERROR( snd_pcm_sw_params_set_stop_threshold(pcm, sw_params, boundary), MMSYSERR_ERROR, "unable to set stop threshold");
     EXIT_ON_ERROR( snd_pcm_sw_params(pcm, sw_params), MMSYSERR_ERROR, "unable to set sw params for playback");
 #undef EXIT_ON_ERROR
 




More information about the wine-cvs mailing list