From 54c81a8c280234e4003f26681811a2ebf7ef0364 Mon Sep 17 00:00:00 2001 From: Jehan Monnier Date: Thu, 24 Jan 2013 15:42:56 +0100 Subject: [PATCH] fix compilation warning --- coreapi/bellesip_sal/sal_impl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/coreapi/bellesip_sal/sal_impl.c b/coreapi/bellesip_sal/sal_impl.c index 07442977e..7c347d88e 100644 --- a/coreapi/bellesip_sal/sal_impl.c +++ b/coreapi/bellesip_sal/sal_impl.c @@ -40,6 +40,8 @@ void _belle_sip_log(belle_sip_log_level lev, const char *fmt, va_list args) { case BELLE_SIP_LOG_DEBUG: ortp_level=ORTP_DEBUG; break; + default: + break; } if (ortp_log_level_enabled(ortp_level)){ ortp_logv(ortp_level,fmt,args);