MNCCms: Added missing return value.

This commit is contained in:
Andreas.Eversberg 2010-06-13 12:08:35 +00:00
parent eb16b40ad0
commit fb48144c2b
1 changed files with 3 additions and 0 deletions

View File

@ -161,7 +161,10 @@ int mncc_recv_mobile(struct osmocom_ms *ms, int msg_type, void *arg)
default:
LOGP(DMNCC, LOGL_INFO, "Message 0x%02x unsupported\n",
msg_type);
return -EINVAL;
}
return 0;
}
int mncc_call(struct osmocom_ms *ms, char *number)