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
This commit is contained in:
Pau Espin 2017-07-05 20:12:52 +02:00 committed by Harald Welte
parent 698045d205
commit eebbec23a5
1 changed files with 3 additions and 3 deletions

View File

@ -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;