]> saetta.ns0.it Git - libzakutils/commitdiff
Brackets in macro to not induce errors. develop
authorAndrea Zagli <azagli@libero.it>
Fri, 2 Apr 2021 10:16:43 +0000 (12:16 +0200)
committerAndrea Zagli <azagli@libero.it>
Fri, 2 Apr 2021 10:16:43 +0000 (12:16 +0200)
src/generic.h

index c8d5b6ab68d14a96f57837af570f8d4b92a0825c..d8f1b480c46b5a4e3687ce0b1828b7e276d762b4 100644 (file)
@@ -78,11 +78,11 @@ void zak_utils_ghashtable_copy (GHashTable *ht_source, GHashTable *ht_dest);
 
 
 #define ZU_STRCMP(str, value)  \
-       g_strcmp0 (str, value) == 0
+       (g_strcmp0 (str, value) == 0)
 
 
 #define ZU_STRTOL(str)  \
-       str == NULL ? 0 : strtol (str, NULL, 10)
+       (str == NULL ? 0 : strtol (str, NULL, 10))
 
 
 G_END_DECLS