From 3741f14689d2058547f90b944aff8ea23ce6233e Mon Sep 17 00:00:00 2001 From: Max Date: Mon, 26 Jun 2017 12:10:12 +0200 Subject: [PATCH] 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 --- src/pcu_l1_if.cpp | 5 ++--- 1 file 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;