diff options
author | Anand B Jyoti <anand.b.jyoti@intel.com> | 2017-07-21 08:29:22 +0530 |
---|---|---|
committer | Anand B Jyoti <anand.b.jyoti@intel.com> | 2017-07-21 08:29:22 +0530 |
commit | e0fe1551eea78f6504f5ed4bb36d9dd22a43fffc (patch) | |
tree | 4fbd7068e7545f46e09b5747910bdf2eaaccfddb /common/VIL | |
parent | 75d272f80206aa886776a0a30e5547f470ce0d62 (diff) |
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 <anand.b.jyoti@intel.com>
Diffstat (limited to 'common/VIL')
-rw-r--r-- | common/VIL/pipeline_txrx/pipeline_txrx_be.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |