aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2021-08-12 14:04:31 +0200
committerNeels Hofmeyr <neels@hofmeyr.de>2021-08-12 15:08:16 +0200
commit764db8a126fe288457a462ffe262158f36d1b95c (patch)
tree8ec0f458c457689a49cb1cc32084a50a37862de1
parent5ba4a034b7293c7d8473842f899ef33e03c03816 (diff)
log: change a LOGPC to LOGP in gprs_rlcmac_ts_alloc.cppneels/segv
-rw-r--r--src/gprs_rlcmac_ts_alloc.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gprs_rlcmac_ts_alloc.cpp b/src/gprs_rlcmac_ts_alloc.cpp
index 88dc0240..8f23c25d 100644
--- a/src/gprs_rlcmac_ts_alloc.cpp
+++ b/src/gprs_rlcmac_ts_alloc.cpp
@@ -738,9 +738,9 @@ static int tbf_select_slot_set(const gprs_rlcmac_tbf *tbf, const gprs_rlcmac_trx
masked_override_with(slot_info, sl, 'D');
}
- LOGPC(DRLCMAC, LOGL_DEBUG, "Selected %s slots: (TS=0)\"%s\"(TS=7), %s\n",
- is_ul ? "UL" : "DL",
- slot_info, single ? "single" : "multi");
+ LOGP(DRLCMAC, LOGL_DEBUG, "Selected %s slots: (TS=0)\"%s\"(TS=7), %s\n",
+ is_ul ? "UL" : "DL",
+ slot_info, single ? "single" : "multi");
return sl;
}