--- linphone-3.4.3/coreapi/linphonecore.c 2011-03-28 21:35:36.000000000 +0300 +++ linphone-3.4.3/coreapi/linphonecore.c 2011-05-25 12:50:05.000000000 +0300 @@ -2118,6 +2118,7 @@ linphone_call_set_state (call,LinphoneCallOutgoingInit,"Starting outgoing call"); if (dest_proxy!=NULL || lc->sip_conf.ping_with_options==FALSE){ err=linphone_core_start_invite(lc,call,dest_proxy); + (void)err; }else{ /*defer the start of the call after the OPTIONS ping*/ call->ping_op=sal_op_new(lc->sal); --- linphone-3.4.3/coreapi/proxy.c 2011-02-17 17:56:47.000000000 +0200 +++ linphone-3.4.3/coreapi/proxy.c 2011-05-25 12:54:52.000000000 +0300 @@ -273,6 +273,7 @@ if (obj->reg_identity!=NULL) id_str=obj->reg_identity; else id_str=linphone_core_get_primary_contact(obj->lc); + (void)id_str; if (obj->reg_sendregister){ char *contact; if (obj->op) --- linphone-3.4.3/coreapi/sal_eXosip2.c 2011-03-25 15:36:38.000000000 +0200 +++ linphone-3.4.3/coreapi/sal_eXosip2.c 2011-05-25 12:53:22.000000000 +0300 @@ -558,6 +558,7 @@ } msg=NULL; err=eXosip_call_build_answer(h->tid,183,&msg); + (void)err; if (msg){ set_sdp(msg,h->sdp_answer); eXosip_call_send_answer(h->tid,183,msg); --- linphone-3.4.3/gtk/friendlist.c 2010-10-15 15:53:50.000000000 +0300 +++ linphone-3.4.3/gtk/friendlist.c 2011-05-25 12:57:01.000000000 +0300 @@ -70,7 +70,9 @@ void linphone_gtk_set_friend_status(GtkWidget *friendlist , LinphoneFriend * fid, const gchar *url, const gchar *status, const gchar *img){ GtkTreeIter iter; LinphoneFriend *tmp=0; +#if 0 gboolean found=FALSE; +#endif GtkTreeModel *model=gtk_tree_view_get_model(GTK_TREE_VIEW(friendlist)); if (gtk_tree_model_get_iter_first(model,&iter)) { do{ @@ -84,7 +86,9 @@ { gtk_list_store_set(GTK_LIST_STORE(model),&iter,FRIEND_PRESENCE_IMG, pixbuf,-1); } +#if 0 found=TRUE; +#endif } }while(gtk_tree_model_iter_next(model,&iter)); }