From 3f2205a65f3c6ce1a0f3c47185e19b29c2b407a7 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Sat, 6 Apr 2019 14:51:52 +0200 Subject: force 'const' on type --- src/include/gnunet_common.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/include/gnunet_common.h b/src/include/gnunet_common.h index 773ff8f3e..3a8479455 100644 --- a/src/include/gnunet_common.h +++ b/src/include/gnunet_common.h @@ -919,8 +919,8 @@ GNUNET_ntoh_double (double d); * the same pointer type. */ #define GNUNET_memcmp(a,b) ({ \ - typeof(b) _a = (a); \ - typeof(a) _b = (b); \ + const typeof(b) _a = (a); \ + const typeof(a) _b = (b); \ memcmp(_a, \ _b, \ sizeof (*a)); }) @@ -933,7 +933,7 @@ GNUNET_ntoh_double (double d); * entire memory being zero'ed out. */ #define GNUNET_is_zero(a) ({ \ - typeof(*a) _z = { 0 }; \ + const typeof(*a) _z = { 0 }; \ memcmp(a, \ &_z, \ sizeof (_z)); }) -- cgit v1.2.3