From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dan Gora Subject: [PATCH] test: fix compilation error in external memory test Date: Tue, 16 Oct 2018 21:22:44 -0300 Message-ID: <20181017002244.6117-1-dg@adax.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Dan Gora , anatoly.burakov@intel.com To: dev@dpdk.org Return-path: Received: from mail-qt1-f175.google.com (mail-qt1-f175.google.com [209.85.160.175]) by dpdk.org (Postfix) with ESMTP id 9BDC24F98 for ; Wed, 17 Oct 2018 02:23:04 +0200 (CEST) Received: by mail-qt1-f175.google.com with SMTP id l9-v6so28056564qtf.5 for ; Tue, 16 Oct 2018 17:23:04 -0700 (PDT) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Fix a compilation error in test_external_mem.c: CC test_external_mem.o test_external_mem.c: In function ‘test_external_mem’: test_external_mem.c:375:2: error: ‘for’ loop initial declarations are only allowed in C99 mode for (int i = 0; i < n_pages; i++) { ^ test_external_mem.c:375:2: note: use option -std=c99 or -std=gnu99 to compile your code Fixes: b270daa43b3d ("test: support external memory") Cc: anatoly.burakov@intel.com Signed-off-by: Dan Gora --- test/test/test_external_mem.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/test/test_external_mem.c b/test/test/test_external_mem.c index d0837aa35..998cafa68 100644 --- a/test/test/test_external_mem.c +++ b/test/test/test_external_mem.c @@ -362,6 +362,7 @@ test_external_mem(void) rte_iova_t iova[len / pgsz]; void *addr; int ret, n_pages; + int i; /* create external memory area */ n_pages = RTE_DIM(iova); @@ -372,7 +373,7 @@ test_external_mem(void) __func__, __LINE__); return -1; } - for (int i = 0; i < n_pages; i++) { + for (i = 0; i < n_pages; i++) { /* arbitrary IOVA */ rte_iova_t tmp = 0x100000000 + i * pgsz; iova[i] = tmp; -- 2.19.0