From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ferruh Yigit Subject: [PATCH] examples/l2fwd-ivshmem: fix icc compile error Date: Fri, 22 Jul 2016 15:13:36 +0100 Message-ID: <1469196816-29395-1-git-send-email-ferruh.yigit@intel.com> Cc: Anatoly Burakov To: dev@dpdk.org Return-path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 22F2B47D1 for ; Fri, 22 Jul 2016 16:13:40 +0200 (CEST) List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" icc version 16.0.2, compile error: == host CC host.o /root/development/dpdk/examples/l2fwd-ivshmem/host/host.c(157): error #3656: variable "total_vm_packets_dropped" may be used before its value is set total_vm_packets_dropped += ctrl->vm_ports[portid].stats.dropped; ^ Fixes: 6aa497249172 ("examples/l2fwd-ivshmem: import sample application") Signed-off-by: Ferruh Yigit --- examples/l2fwd-ivshmem/host/host.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/l2fwd-ivshmem/host/host.c b/examples/l2fwd-ivshmem/host/host.c index cd284b7..da7b00d 100644 --- a/examples/l2fwd-ivshmem/host/host.c +++ b/examples/l2fwd-ivshmem/host/host.c @@ -110,7 +110,8 @@ static void print_stats(void) { uint64_t total_packets_dropped, total_packets_tx, total_packets_rx; - uint64_t total_vm_packets_dropped, total_vm_packets_tx, total_vm_packets_rx; + uint64_t total_vm_packets_dropped = 0; + uint64_t total_vm_packets_tx, total_vm_packets_rx; unsigned portid; total_packets_dropped = 0; -- 2.7.4