aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2016-07-24 15:14:54 +0200
committerNeels Hofmeyr <neels@hofmeyr.de>2016-07-25 16:38:18 +0200
commitae65ccd0b2fe22e3c6ab5c855ff948f93ada0eed (patch)
treecc9865957e194350cd4369675842c72e01f2bb59
parent8a2f026cf060e007eab073920313e17bb534a3a9 (diff)
error log: rsl.c: typo x2
-rw-r--r--src/common/rsl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/rsl.c b/src/common/rsl.c
index 294ef282..b4245c1a 100644
--- a/src/common/rsl.c
+++ b/src/common/rsl.c
@@ -2049,7 +2049,7 @@ static int rsl_rx_cchan(struct gsm_bts_trx *trx, struct msgb *msg)
msg->lchan = rsl_lchan_lookup(trx, cch->chan_nr);
if (!msg->lchan) {
- LOGP(DRSL, LOGL_ERROR, "Rx RSL %s for unknow lchan\n",
+ LOGP(DRSL, LOGL_ERROR, "Rx RSL %s for unknown lchan\n",
rsl_msg_name(cch->c.msg_type));
msgb_free(msg);
return report_error(trx);
@@ -2103,7 +2103,7 @@ static int rsl_rx_dchan(struct gsm_bts_trx *trx, struct msgb *msg)
msg->lchan = rsl_lchan_lookup(trx, dch->chan_nr);
if (!msg->lchan) {
- LOGP(DRSL, LOGL_ERROR, "Rx RSL %s for unknow lchan\n",
+ LOGP(DRSL, LOGL_ERROR, "Rx RSL %s for unknown lchan\n",
rsl_or_ipac_msg_name(dch->c.msg_type));
msgb_free(msg);
return report_error(trx);