From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pablo Neira Ayuso Subject: Re: [PATCH] extensions: libxt_hashlimit: fix 64-bit printf format Date: Thu, 18 May 2017 15:37:30 +0200 Message-ID: <20170518133730.GA1662@salvia> References: <1495107808-7207-1-git-send-email-alin.nastac@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: netfilter-devel@vger.kernel.org To: Alin Nastac Return-path: Received: from mail.us.es ([193.147.175.20]:34064 "EHLO mail.us.es" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755187AbdERNhk (ORCPT ); Thu, 18 May 2017 09:37:40 -0400 Received: from antivirus1-rhel7.int (unknown [192.168.2.11]) by mail.us.es (Postfix) with ESMTP id 66939168B60 for ; Thu, 18 May 2017 15:37:31 +0200 (CEST) Received: from antivirus1-rhel7.int (localhost [127.0.0.1]) by antivirus1-rhel7.int (Postfix) with ESMTP id 590331852B for ; Thu, 18 May 2017 15:37:31 +0200 (CEST) Received: from antivirus1-rhel7.int (localhost [127.0.0.1]) by antivirus1-rhel7.int (Postfix) with ESMTP id 4A7FBFF2F1 for ; Thu, 18 May 2017 15:37:29 +0200 (CEST) Content-Disposition: inline In-Reply-To: <1495107808-7207-1-git-send-email-alin.nastac@gmail.com> Sender: netfilter-devel-owner@vger.kernel.org List-ID: On Thu, May 18, 2017 at 01:43:28PM +0200, Alin Nastac wrote: > Furthermore, this extension use a mix of PRIu64 and %llu formats for > uint64_t values. IMO it should use only one, for the sake of consistency. > > Signed-off-by: Alin Nastac > --- > extensions/libxt_hashlimit.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/extensions/libxt_hashlimit.c b/extensions/libxt_hashlimit.c > index 9e63e1e..21b7aaa 100644 > --- a/extensions/libxt_hashlimit.c > +++ b/extensions/libxt_hashlimit.c > @@ -942,7 +942,7 @@ static void print_packets_rate_xlate(struct xt_xlate *xl, uint64_t avg, > _rates[i].mult / avg < _rates[i].mult % avg) > break; > > - xt_xlate_add(xl, " %llu/%s burst %lu packets", > + xt_xlate_add(xl, " %llu/%s burst "PRIu64" packets", ^ missing % here?