netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ipset: fix print format warning
@ 2021-01-18  4:58 Neutron Soutmun
  2021-01-19  8:01 ` Jozsef Kadlecsik
  0 siblings, 1 reply; 2+ messages in thread
From: Neutron Soutmun @ 2021-01-18  4:58 UTC (permalink / raw)
  To: netfilter-devel

[-- Attachment #1: Type: text/plain, Size: 1051 bytes --]

* Use PRIx64 for portablility over various architectures.
* The format string for the 64bit number printing is incorrect,
  the `%` sign is missing.
* The force types casting over the uint32_t and uint64_t are unnecessary
  which warned by the compiler on different architecture.

Signed-off-by: Neutron Soutmun <neo.neutron@gmail.com>
---
 lib/print.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/print.c b/lib/print.c
index 0d86a98..a7ffd81 100644
--- a/lib/print.c
+++ b/lib/print.c
@@ -431,10 +431,10 @@ ipset_print_hexnumber(char *buf, unsigned int len,
 				*(const uint16_t *) number);
 	else if (maxsize == sizeof(uint32_t))
 		return snprintf(buf, len, "0x%08"PRIx32,
-				(long unsigned) *(const uint32_t *) number);
+				*(const uint32_t *) number);
 	else if (maxsize == sizeof(uint64_t))
-		return snprintf(buf, len, "0x016lx",
-				(long long unsigned) *(const uint64_t *) number);
+		return snprintf(buf, len, "0x%016"PRIx64,
+				*(const uint64_t *) number);
 	else
 		assert(0);
 	return 0;
--
2.30.0

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] ipset: fix print format warning
  2021-01-18  4:58 [PATCH] ipset: fix print format warning Neutron Soutmun
@ 2021-01-19  8:01 ` Jozsef Kadlecsik
  0 siblings, 0 replies; 2+ messages in thread
From: Jozsef Kadlecsik @ 2021-01-19  8:01 UTC (permalink / raw)
  To: Neutron Soutmun; +Cc: netfilter-devel

Hi,

On Mon, 18 Jan 2021, Neutron Soutmun wrote:

> * Use PRIx64 for portablility over various architectures.
> * The format string for the 64bit number printing is incorrect,
>   the `%` sign is missing.
> * The force types casting over the uint32_t and uint64_t are unnecessary
>   which warned by the compiler on different architecture.
> 
> Signed-off-by: Neutron Soutmun <neo.neutron@gmail.com>

Thanks, patch is applied in the ipset git tree.

Best regards,
Jozsef

> ---
>  lib/print.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/lib/print.c b/lib/print.c
> index 0d86a98..a7ffd81 100644
> --- a/lib/print.c
> +++ b/lib/print.c
> @@ -431,10 +431,10 @@ ipset_print_hexnumber(char *buf, unsigned int len,
>  				*(const uint16_t *) number);
>  	else if (maxsize == sizeof(uint32_t))
>  		return snprintf(buf, len, "0x%08"PRIx32,
> -				(long unsigned) *(const uint32_t *) number);
> +				*(const uint32_t *) number);
>  	else if (maxsize == sizeof(uint64_t))
> -		return snprintf(buf, len, "0x016lx",
> -				(long long unsigned) *(const uint64_t *) number);
> +		return snprintf(buf, len, "0x%016"PRIx64,
> +				*(const uint64_t *) number);
>  	else
>  		assert(0);
>  	return 0;
> --
> 2.30.0
> 

-
E-mail  : kadlec@blackhole.kfki.hu, kadlecsik.jozsef@wigner.hu
PGP key : https://wigner.hu/~kadlec/pgp_public_key.txt
Address : Wigner Research Centre for Physics
          H-1525 Budapest 114, POB. 49, Hungary

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-01-19  8:02 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-18  4:58 [PATCH] ipset: fix print format warning Neutron Soutmun
2021-01-19  8:01 ` Jozsef Kadlecsik

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).