From 1d7bfc79c28f8473fbbe085d836911b00b50f9c8 Mon Sep 17 00:00:00 2001 From: Ismael Gomez Date: Thu, 22 Sep 2016 18:21:50 +0200 Subject: [PATCH] fixed coverty bugs --- srslte/lib/ue/ue_dl.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/srslte/lib/ue/ue_dl.c b/srslte/lib/ue/ue_dl.c index 6886aabd7..a26242da9 100644 --- a/srslte/lib/ue/ue_dl.c +++ b/srslte/lib/ue/ue_dl.c @@ -300,12 +300,7 @@ int srslte_ue_dl_decode_rnti(srslte_ue_dl_t *q, cf_t *input, uint8_t *data, uint q->pkt_errors++; } else if (ret == SRSLTE_ERROR_INVALID_INPUTS) { fprintf(stderr, "Error calling srslte_pdsch_decode()\n"); - } else if (ret == SRSLTE_SUCCESS) { - if (SRSLTE_VERBOSE_ISDEBUG()) { - INFO("Decoded Message: ", 0); - srslte_vec_fprint_hex(stdout, data, q->pdsch_cfg.grant.mcs.tbs); - } - } + } } }