From: Chris Rienzo Date: Wed, 27 Mar 2019 16:24:20 +0000 (-0400) Subject: FS-11731 [mod_rayo] fix compile error X-Git-Tag: v1.8.6~1^2~87 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=049edaa84d116e8fd820930b7408b912e972d64f;p=thirdparty%2Ffreeswitch.git FS-11731 [mod_rayo] fix compile error --- diff --git a/src/mod/event_handlers/mod_rayo/mod_rayo.c b/src/mod/event_handlers/mod_rayo/mod_rayo.c index 92699ca843..9ef5b8c913 100644 --- a/src/mod/event_handlers/mod_rayo/mod_rayo.c +++ b/src/mod/event_handlers/mod_rayo/mod_rayo.c @@ -468,6 +468,8 @@ static const char *switch_cause_to_rayo_cause(switch_call_cause_t cause) case SWITCH_CAUSE_NO_PICKUP: case SWITCH_CAUSE_SRTP_READ_ERROR: return RAYO_END_REASON_ERROR; + default: + break; } return RAYO_END_REASON_HANGUP; }