From 1556b610fc17fa6e9ef726dbb99f96fa91954298 Mon Sep 17 00:00:00 2001 From: Juha Heinanen Date: Tue, 11 Jun 2019 15:06:28 +0300 Subject: [PATCH] - Added 'void' return type to logging functions. --- app/src/main/cpp/baresip.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/cpp/baresip.c b/app/src/main/cpp/baresip.c index 6fc332e6..1fc0adcf 100644 --- a/app/src/main/cpp/baresip.c +++ b/app/src/main/cpp/baresip.c @@ -39,7 +39,7 @@ static int vprintf_null(const char *p, size_t size, void *arg) return 0; } -static net_debug_log() { +static void net_debug_log() { char debug_buf[2048]; int l; l = re_snprintf(&(debug_buf[0]), 2047, "%H", net_debug, baresip_network()); @@ -49,7 +49,7 @@ static net_debug_log() { } } -static ua_print_sip_status_log() { +static void ua_print_sip_status_log() { char debug_buf[2048]; int l; l = re_snprintf(&(debug_buf[0]), 2047, "%H", ua_print_sip_status);