diff --git a/daemon/daemon.cc b/daemon/daemon.cc
index 634fa95d3ce07c536e6472b83cf021843a7d37bf..5e79f329805fe4425c9152131068b3013e11fc1e 100644
--- a/daemon/daemon.cc
+++ b/daemon/daemon.cc
@@ -123,7 +123,7 @@ void *Daemon::iterateThread(void *arg) {
 
 EventResponse::EventResponse(Daemon *daemon, LinphoneCall *call, LinphoneCallState state) {
 	LinphoneCallLog *callLog = linphone_call_get_call_log(call);
-	LinphoneAddress *fromAddr = linphone_call_log_get_from_address(callLog);
+	const LinphoneAddress *fromAddr = linphone_call_log_get_from_address(callLog);
 	char *fromStr = linphone_address_as_string(fromAddr);
 
 	ostringstream ostr;
diff --git a/tester/quality_reporting_tester.c b/tester/quality_reporting_tester.c
index 92b5c4e0ec4cee8f2092d8d7a7da3c2829481d30..6870791a8388d0bf91eed9f49d06ccfd484074eb 100644
--- a/tester/quality_reporting_tester.c
+++ b/tester/quality_reporting_tester.c
@@ -97,10 +97,12 @@ static void on_report_send_with_rtcp_xr_remote (const LinphoneCall *call, SalStr
 	}
 }
 
+/*
 static void on_report_send_with_rtcp_xr_both (const LinphoneCall *call, SalStreamType stream_type, const LinphoneContent *content) {
 	on_report_send_with_rtcp_xr_local(call, stream_type, content);
 	on_report_send_with_rtcp_xr_remote(call, stream_type, content);
 }
+*/
 
 static bool_t create_call_for_quality_reporting_tests (
 	LinphoneCoreManager *marie,