From: Anand B Jyoti Date: Fri, 21 Jul 2017 02:59:22 +0000 (+0530) Subject: TXRX: Initialize the debug flag to disable by default X-Git-Tag: opnfv-5.0.RC1~55 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F13%2F37913%2F1;p=samplevnf.git TXRX: Initialize the debug flag to disable by default JIRA: SAMPLEVNF-66 The un-initialized global variable some time floods with debug prints. This patch inializes the variable to disable debug prints by default. Change-Id: I207a7dd1e85c19d3c10e935321b2fe39a46a5f59 Signed-off-by: Anand B Jyoti --- diff --git a/common/VIL/pipeline_txrx/pipeline_txrx_be.c b/common/VIL/pipeline_txrx/pipeline_txrx_be.c index 0f9ec3d7..2fcb4ad3 100644 --- a/common/VIL/pipeline_txrx/pipeline_txrx_be.c +++ b/common/VIL/pipeline_txrx/pipeline_txrx_be.c @@ -32,7 +32,7 @@ #include "app.h" #include "lib_icmpv6.h" -uint8_t TXRX_DEBUG; +uint8_t TXRX_DEBUG = 0; int pkt_burst_cnt;