From eebbec23a5b3717623229b257f86f1f23a6a18cb Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Wed, 5 Jul 2017 20:12:52 +0200 Subject: sccp_scoc: Fix compilation warning and leave a pragma message Following warning was being printed: warning: statement will never be executed [-Wswitch-unreachable] The code in there seems not to be finished, so better leave the code and a pragma message to get notified when we compile. Change-Id: I4e2c482803954c984cb6792b11b4ea0fe674e269 --- src/sccp_scoc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/sccp_scoc.c b/src/sccp_scoc.c index 3a2cb47..3d43448 100644 --- a/src/sccp_scoc.c +++ b/src/sccp_scoc.c @@ -938,10 +938,10 @@ static void scoc_fsm_active(struct osmo_fsm_inst *fi, uint32_t event, void *data struct osmo_scu_prim *prim = NULL; switch (event) { - /* TODO: internal disco */ +#pragma message ("TODO: internal disco: send N-DISCONNECT.ind to user") /* send N-DISCONNECT.ind to user */ - scu_gen_encode_and_send(conn, event, xua, OSMO_SCU_PRIM_N_DISCONNECT, - PRIM_OP_INDICATION); + /*scu_gen_encode_and_send(conn, event, xua, OSMO_SCU_PRIM_N_DISCONNECT, + PRIM_OP_INDICATION);*/ /* fall-through */ case SCOC_E_SCU_N_DISC_REQ: prim = data; -- cgit v1.2.3