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
This commit is contained in:
Max 2017-06-26 12:10:12 +02:00
parent 865436dee0
commit 3741f14689
1 changed files with 2 additions and 3 deletions

View File

@ -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;