fix compilation issue

This commit is contained in:
Simon Morlat 2015-10-20 22:23:41 +02:00
parent 3b47d36cb0
commit 4b7f92995a
2 changed files with 2 additions and 2 deletions

View file

@ -72,7 +72,7 @@ void sal_op_authenticate(SalOp *op, const SalAuthInfo *info){
/*Registration authenticate is just about registering again*/
sal_register_refresh(op,-1);
}else {
/*for sure auth info will be accesible from the provider*/
/*for sure auth info will be accessible from the provider*/
sal_process_authentication(op);
}
return ;

View file

@ -371,7 +371,7 @@ static void volume_control_value_changed(GtkScaleButton *button, gdouble value,
static gboolean volume_control_button_update_value(GtkWidget *widget) {
LinphoneCall *call = (LinphoneCall *)g_object_get_data(G_OBJECT(widget), "call");
VolumeControlType type = (VolumeControlType)GPOINTER_TO_INT(g_object_get_data(G_OBJECT(widget), "type"));
float gain;
float gain = -1;
if(type == VOLUME_CTRL_PLAYBACK) {
gain = linphone_call_get_speaker_volume_gain(call);