aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2021-09-28 16:33:49 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2021-09-28 16:38:30 +0200
commita27fb3fce3a2896f0a956da0ebbb2d5ba484f48f (patch)
tree304960b766405b43a92d2d10034a3358e5af0a0b
parentc8d2166b86ed6c6071b2fed05257093e6ddd02e5 (diff)
cosmetic: Fix missing space
-rw-r--r--src/bts.cpp2
-rw-r--r--src/pdch.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/bts.cpp b/src/bts.cpp
index c4636066..cad6c90e 100644
--- a/src/bts.cpp
+++ b/src/bts.cpp
@@ -1173,7 +1173,7 @@ void bts_update_tbf_ta(struct gprs_rlcmac_bts *bts, const char *p, uint32_t fn,
goto no_tbf;
poll = pdch_ulc_get_node(pdch->ulc, fn);
- if (!poll || poll->type !=PDCH_ULC_NODE_TBF_POLL ||
+ if (!poll || poll->type != PDCH_ULC_NODE_TBF_POLL ||
poll->tbf_poll.poll_tbf->direction != GPRS_RLCMAC_UL_TBF)
goto no_tbf;
diff --git a/src/pdch.cpp b/src/pdch.cpp
index de77075a..29e3b20f 100644
--- a/src/pdch.cpp
+++ b/src/pdch.cpp
@@ -314,7 +314,7 @@ void gprs_rlcmac_pdch::rcv_control_ack(Packet_Control_Acknowledgement_t *packet,
struct pdch_ulc_node *poll;
poll = pdch_ulc_get_node(ulc, fn);
- if (!poll || poll->type !=PDCH_ULC_NODE_TBF_POLL || !poll->tbf_poll.poll_tbf) {
+ if (!poll || poll->type != PDCH_ULC_NODE_TBF_POLL || !poll->tbf_poll.poll_tbf) {
LOGPDCH(this, DRLCMAC, LOGL_NOTICE, "PACKET CONTROL ACK with "
"unknown FN=%u TLLI=0x%08x (TRX %d TS %d)\n",
fn, tlli, trx_no(), ts_no);
@@ -527,7 +527,7 @@ void gprs_rlcmac_pdch::rcv_control_egprs_dl_ack_nack(EGPRS_PD_AckNack_t *ack_nac
tfi = ack_nack->DOWNLINK_TFI;
poll = pdch_ulc_get_node(ulc, fn);
- if (!poll || poll->type !=PDCH_ULC_NODE_TBF_POLL) {
+ if (!poll || poll->type != PDCH_ULC_NODE_TBF_POLL) {
LOGPDCH(this, DRLCMAC, LOGL_NOTICE, "EGPRS PACKET DOWNLINK ACK with "
"unknown FN=%u TFI=%d (TRX %d TS %d)\n",
fn, tfi, trx_no(), ts_no);