From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-we0-f176.google.com (mail-we0-f176.google.com [74.125.82.176]) by dpdk.org (Postfix) with ESMTP id 823B2312 for ; Mon, 19 May 2014 14:36:37 +0200 (CEST) Received: by mail-we0-f176.google.com with SMTP id q59so5482124wes.35 for ; Mon, 19 May 2014 05:36:45 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=/sXVjwVfwKx4vY3fNdNiN2acRBo+agzDEngk14kcSKA=; b=Kw80rUVecDY6zjT9k4pkUkkvMnX/DIu4UsnBsOsBcfccWJWmIug5i4MzE8kizwaxMF B+GhE6XznaDXh8dR+IjX33WYrmVrwwYSfnLR8yY6K9MaK1qu8I91OkY8fw29+qjy3MpY HO2ev9VHERsizoqb8pqoN2YvsqdzQNlcDVaI6ofgr9+XyRxwammw/cpLIFipQMYrFmBU JH25ZHdRt/KamHOKrfTjnwUWsJdlerIRGZLGy6ljujLOlClgG+/55p0lTuySOYhhjXxr 1ktV5Zf6mAZimV01AOnb/NijQ8BD9K71Qz3pmIfIWWUZ2WnaR55hDTd/AYqZuK0737R6 dO3w== X-Gm-Message-State: ALoCoQmLx8yJrkKhGMu9ykm8Mt0pXo0eSSomPPlo3mck28iMxMZDiXvP2H0k/bpwaq/mDUuTyIhu X-Received: by 10.194.242.136 with SMTP id wq8mr8374808wjc.4.1400503005918; Mon, 19 May 2014 05:36:45 -0700 (PDT) Received: from glumotte.dev.6wind.com (6wind.net2.nerim.net. [213.41.180.237]) by mx.google.com with ESMTPSA id g9sm5984771wja.39.2014.05.19.05.36.44 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 19 May 2014 05:36:45 -0700 (PDT) From: Olivier Matz To: dev@dpdk.org Date: Mon, 19 May 2014 14:36:37 +0200 Message-Id: <1400502997-4305-1-git-send-email-olivier.matz@6wind.com> X-Mailer: git-send-email 1.9.2 Subject: [dpdk-dev] [PATCH] ivshmem: fix compilation 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: Mon, 19 May 2014 12:36:37 -0000 Fix compilation error introduced by: 591a9d798 add FILE argument to debug functions The stdio.h include is missing due to the recent adding of FILE* argument of dump functions. Signed-off-by: Olivier Matz --- lib/librte_ivshmem/rte_ivshmem.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_ivshmem/rte_ivshmem.c b/lib/librte_ivshmem/rte_ivshmem.c index 675c383..4a5e7b0 100644 --- a/lib/librte_ivshmem/rte_ivshmem.c +++ b/lib/librte_ivshmem/rte_ivshmem.c @@ -35,6 +35,7 @@ #include #include #include +#include #include #include -- 1.9.2