aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax <msuraev@sysmocom.de>2017-06-26 12:10:12 +0200
committerMax <msuraev@sysmocom.de>2017-06-26 12:10:12 +0200
commit3741f14689d2058547f90b944aff8ea23ce6233e (patch)
treeac3782b3f0f3b9fdc1a0a3a563fa36fd13f8ccf5
parent865436dee0d28feeaab96849cba398003455ea2c (diff)
Remove comment warning
It's unclear why the warning was placed next to commented log statement to begin with, so let's just follow that warning's advice and drop it. Change-Id: I3ef7a45d015a28fdadf75f97294bc5d4f825b8ae
-rw-r--r--src/pcu_l1_if.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/pcu_l1_if.cpp b/src/pcu_l1_if.cpp
index c16ac0c4..c2c6cc6f 100644
--- a/src/pcu_l1_if.cpp
+++ b/src/pcu_l1_if.cpp
@@ -549,9 +549,8 @@ static int pcu_rx_time_ind(struct gsm_pcu_if_time_ind *time_ind)
/* omit frame numbers not starting at a MAC block */
if (fn13 != 0 && fn13 != 4 && fn13 != 8)
return 0;
-#warning uncomment
-// LOGP(DL1IF, LOGL_DEBUG, "Time indication received: %d\n",
-// time_ind->fn % 52);
+
+ LOGP(DL1IF, LOGL_DEBUG, "Time indication received: %d\n", time_ind->fn % 52);
BTS::main_bts()->set_current_frame_number(time_ind->fn);
return 0;