From e0fe1551eea78f6504f5ed4bb36d9dd22a43fffc Mon Sep 17 00:00:00 2001 From: Anand B Jyoti Date: Fri, 21 Jul 2017 08:29:22 +0530 Subject: 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 --- common/VIL/pipeline_txrx/pipeline_txrx_be.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/VIL') 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; -- cgit 1.2.3-korg