From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from wes1-so1.wedos.net (wes1-so1.wedos.net [46.28.106.15]) by dpdk.org (Postfix) with ESMTP id B3D9F37B2 for ; Mon, 13 Jun 2016 16:48:40 +0200 (CEST) Received: from pcviktorin.fit.vutbr.cz (pcviktorin.fit.vutbr.cz [147.229.13.147]) by wes1-so1.wedos.net (Postfix) with ESMTPSA id 3rSwdN3psyzBr4; Mon, 13 Jun 2016 16:48:40 +0200 (CEST) Date: Mon, 13 Jun 2016 16:43:33 +0200 From: Jan Viktorin To: Thomas Monjalon Cc: dev@dpdk.org, David Marchand , Bruce Richardson Message-ID: <20160613164333.4f707a41@pcviktorin.fit.vutbr.cz> In-Reply-To: <1627300.FuYmoD5NKX@xps13> References: <1465805550-30640-1-git-send-email-viktorin@rehivetech.com> <1465805550-30640-6-git-send-email-viktorin@rehivetech.com> <1627300.FuYmoD5NKX@xps13> Organization: RehiveTech MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable 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:48:40 -0000 On Mon, 13 Jun 2016 16:40:09 +0200 Thomas Monjalon wrote: > 2016-06-13 10:12, Jan Viktorin: > > +static int do_copy(struct archive *r, struct archive *w) > > +{ > > + const void *buf; > > + size_t len; > > + off_t off; > > + int ret; > > + > > + while (1) { > > + ret =3D archive_read_data_block(r, &buf, &len, &off); =20 >=20 > There is an error in 32-bit compilation: >=20 > app/test/resource.c:108:48: error: > passing argument 4 of =E2=80=98archive_read_data_block=E2=80=99 from inco= mpatible pointer type > ret =3D archive_read_data_block(r, &buf, &len, &off); > ^ Hello Thomas, confirmed in my Jenkins build. But it's strange as I've built it successful= ly for 32b many times before by using Buildroot... So, I am going to resend v5. Regards Jan