From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [143.182.124.21]) by dpdk.org (Postfix) with ESMTP id D660DAFD6 for ; Tue, 27 May 2014 19:09:53 +0200 (CEST) Received: from azsmga001.ch.intel.com ([10.2.17.19]) by azsmga101.ch.intel.com with ESMTP; 27 May 2014 10:10:04 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.98,920,1392192000"; d="scan'208";a="437445045" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by azsmga001.ch.intel.com with ESMTP; 27 May 2014 10:10:02 -0700 Received: from sivswdev01.ir.intel.com (sivswdev01.ir.intel.com [10.237.217.45]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id s4RHA1Fv012398; Tue, 27 May 2014 18:10:02 +0100 Received: from sivswdev01.ir.intel.com (localhost [127.0.0.1]) by sivswdev01.ir.intel.com with ESMTP id s4RHA1Th019881; Tue, 27 May 2014 18:10:01 +0100 Received: (from cfdumitr@localhost) by sivswdev01.ir.intel.com with id s4RHA1Zf019877; Tue, 27 May 2014 18:10:01 +0100 From: Cristian Dumitrescu To: dev@dpdk.org Date: Tue, 27 May 2014 18:09:25 +0100 Message-Id: <1401210592-19732-3-git-send-email-cristian.dumitrescu@intel.com> X-Mailer: git-send-email 1.7.0.7 In-Reply-To: <1401210592-19732-1-git-send-email-cristian.dumitrescu@intel.com> References: <1401210592-19732-1-git-send-email-cristian.dumitrescu@intel.com> Subject: [dpdk-dev] [PATCH 02/29] hexdump: fixed minor build issue X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2014 17:09:55 -0000 Included stdio.h in rte_hexdump.h Please enter the commit message for your changes. Lines starting Signed-off-by: Cristian Dumitrescu --- lib/librte_eal/common/include/rte_hexdump.h | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/lib/librte_eal/common/include/rte_hexdump.h b/lib/librte_eal/common/include/rte_hexdump.h index db08d30..b4fdf7f 100644 --- a/lib/librte_eal/common/include/rte_hexdump.h +++ b/lib/librte_eal/common/include/rte_hexdump.h @@ -39,6 +39,8 @@ * Simple API to dump out memory in a special hex format. */ +#include + #ifdef __cplusplus extern "C" { #endif -- 1.7.7.6