summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/common.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/common.h b/src/common.h
index 968c1cd4..1ec4b48b 100644
--- a/src/common.h
+++ b/src/common.h
@@ -65,10 +65,7 @@ const char *get_irssi_config(void);
/* max. size for %d */
#define MAX_INT_STRLEN ((sizeof(int) * CHAR_BIT + 2) / 3 + 1)
-#define g_free_not_null(a) \
- G_STMT_START { \
- if (a) g_free(a); \
- } G_STMT_END
+#define g_free_not_null(a) g_free(a)
#define g_free_and_null(a) \
G_STMT_START { \