From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f43.google.com (mail-wm0-f43.google.com [74.125.82.43]) by dpdk.org (Postfix) with ESMTP id 9AE443990 for ; Mon, 13 Jun 2016 16:40:11 +0200 (CEST) Received: by mail-wm0-f43.google.com with SMTP id m124so82825365wme.1 for ; Mon, 13 Jun 2016 07:40:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=74WLU2Vbl2ciWcv0ibxOPdiw9lKda53EVhUJ92zgNuY=; b=ctDeFVRu4Vli7as19XmC4ufpIGQe7vvfOtEaH5GaMW5Sr+lGWaKpjI8rtk5A7uNztC V8gCmKku2JPRyerfvdBTk9yuzwPvgR6819v9D06eDwrhhYEsJfEZXX/P+mpx9uLzRXui nbiwQufinDiC6tTV6uR/CQW+uzmPNxdBBVtCWeoOG531jDAMZWAg4HFHQkaxq/m1oQO0 fxO0oCa+F38p0tjty0l2sWJMBh0r7VJRLobO2gyzCkKYDV7XEeHaWU/Y0JbMOyKbfsgb PN0mA3csE9LF66VHtB5AkRxW8aIdZAGTtHUWfsKiXoP+mWz2aujApJ1/dlxea8XLUlrM mlgw== 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:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=74WLU2Vbl2ciWcv0ibxOPdiw9lKda53EVhUJ92zgNuY=; b=Lbj8mHaU+7f7/tMQAaxVjhU/96ivKo9Tr22I9/LgHrOK/WOFsHK0eFp/n+OY94BpFS B1xOs5mDdFmmgz020gMgDS6U9KVu9W/zz9qtVnbznpFgvLPR+GAWESSCcBNL5/qCgBCP FYliudFLb0WbZJzfVnpT+GvSm3jC9ioZfTI4kmWqtQT0smi3/QwcSm2z6I2oW96CcKuB 0Bba8GsSWIhehhFW7BfpKE4XAD9pNPaAc1xc3vY9NAQNGZrYa1fH9TytiJsJG/KhA3+v xtiTXKtb6675PSwiP/uM+03ZzWFmKJHBmgQKwKS1y+Ur07N3aP/HsH7gGIOEg4bMCYAi B4Ow== X-Gm-Message-State: ALyK8tLgOw6v5fMCBYinanyIq98akIdroIcsm9Z6qzI5AaHtyq6MBzLtwwN6LeCAAS2luysF X-Received: by 10.28.144.203 with SMTP id s194mr1649443wmd.12.1465828811350; Mon, 13 Jun 2016 07:40:11 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id a191sm14770950wme.5.2016.06.13.07.40.10 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 13 Jun 2016 07:40:10 -0700 (PDT) From: Thomas Monjalon To: Jan Viktorin Cc: dev@dpdk.org, David Marchand , Bruce Richardson Date: Mon, 13 Jun 2016 16:40:09 +0200 Message-ID: <1627300.FuYmoD5NKX@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1465805550-30640-6-git-send-email-viktorin@rehivetech.com> References: <1465805550-30640-1-git-send-email-viktorin@rehivetech.com> <1465805550-30640-6-git-send-email-viktorin@rehivetech.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Subject: Re: [dpdk-dev] [PATCH v4 05/10] app/test: support resources archived by tar 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, 13 Jun 2016 14:40:11 -0000 2016-06-13 10:12, Jan Viktorin: > +static int do_copy(struct archive *r, struct archive *w) > +{ > +=09const void *buf; > +=09size_t len; > +=09off_t off; > +=09int ret; > + > +=09while (1) { > +=09=09ret =3D archive_read_data_block(r, &buf, &len, &off); There is an error in 32-bit compilation: app/test/resource.c:108:48: error: passing argument 4 of =E2=80=98archive_read_data_block=E2=80=99 from in= compatible pointer type ret =3D archive_read_data_block(r, &buf, &len, &off); ^