host/mobile: Fix indentation in gsm48_cc, no functional change

Written-by: Andreas Eversberg <jolly@eversberg.eu>
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
This commit is contained in:
Andreas Eversberg 2011-11-04 08:16:37 +01:00 committed by Sylvain Munaut
parent 0be0680ab5
commit 11b4028664
1 changed files with 5 additions and 5 deletions

View File

@ -1991,11 +1991,11 @@ int mncc_tx_to_cc(void *inst, int msg_type, void *arg)
if ((msg_type == downstatelist[i].type)
&& ((1 << trans->cc.state) & downstatelist[i].states))
break;
if (i == DOWNSLLEN) {
LOGP(DCC, LOGL_NOTICE, "Message %d unhandled at state "
"%d\n", msg_type, trans->cc.state);
return 0;
}
if (i == DOWNSLLEN) {
LOGP(DCC, LOGL_NOTICE, "Message %d unhandled at state %d\n",
msg_type, trans->cc.state);
return 0;
}
rc = downstatelist[i].rout(trans, arg);