linphone-developers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Linphone-developers] [patch] Misleading Error Message in alsa.c


From: Cameron Barfield
Subject: [Linphone-developers] [patch] Misleading Error Message in alsa.c
Date: Wed, 13 Feb 2008 10:48:28 -0800
User-agent: Thunderbird 2.0.0.4 (X11/20070604)

Howdy --

It's nothing major, but while perusing the changes in 2.1.1 I found a 
mis-leading error
message in alsa_set_params().

If snd_pcm_sw_params_set_stop_threshold() fails, the warning message is "Error 
setting
*start* threshold." I could imagine this causing some headaches...

Regards,
Cameron


--- alsa.c.orig 2008-02-13 10:37:04.000000000 -0800
+++ alsa.c      2008-02-13 10:37:50.000000000 -0800
@@ -142,7 +142,7 @@
                        ms_warning("alsa_set_params: Error setting start 
threshold:%s",snd_strerror(err));
                }
                if ((err=snd_pcm_sw_params_set_stop_threshold(pcm_handle, 
swparams,periodsize*periods ))<0){
-                       ms_warning("alsa_set_params: Error setting start 
threshold:%s",snd_strerror(err));
+                       ms_warning("alsa_set_params: Error setting stop 
threshold:%s",snd_strerror(err));
                }
                if ((err=snd_pcm_sw_params(pcm_handle, swparams))<0){
                        ms_warning("alsa_set_params: Error setting SW 
params:%s",snd_strerror(err));


reply via email to

[Prev in Thread] Current Thread [Next in Thread]