From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Enge Subject: Re: [PATCH 1/7] gnu: Add usbredir. Date: Sat, 30 Jul 2016 23:01:16 +0200 Message-ID: <20160730210116.GA2179@solar> References: <20160723214618.GA26113@jasmine> <20160724175230.19184-1-david@craven.ch> <20160728210918.GA1806@jasmine> <20160729151657.GA9666@jasmine> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46141) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bTbNt-0005dv-Nu for guix-devel@gnu.org; Sat, 30 Jul 2016 17:01:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bTbNq-0002Ak-Jh for guix-devel@gnu.org; Sat, 30 Jul 2016 17:01:25 -0400 Received: from mailrelay2.public.one.com ([91.198.169.125]:60940) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bTbNq-0002AT-6k for guix-devel@gnu.org; Sat, 30 Jul 2016 17:01:22 -0400 Content-Disposition: inline In-Reply-To: List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: David Craven Cc: guix-devel Hello, David! Usbredir fails to build on armhf, and I am certain it will also fail on i686 or more generally any 32 bit architecture: http://hydra.gnu.org:3000/build/1345279 usbredirhost.c:1162:5: error: format ?%lu? expects argument of type ?long unsigned int?, but argument 5 has type ?uint64_t? [-Werror=format=] The fix is to use "%PRIu64" instead of "%lu" in the format strings for printf. Do you think you could file a bug upstream? Thanks, Andreas