You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.1 KiB
29 lines
1.1 KiB
From 965a99f34a185bb3b3aa5ac0e9e5d5eb05d0fac0 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
|
|
Date: Mon, 9 May 2022 15:11:20 +0200
|
|
Subject: [PATCH] basic/alloc-util: remove unnecessary parens
|
|
|
|
Those symbols are not macros anymore, so we can drop parens.
|
|
|
|
(cherry picked from commit 96d651a22bf62e63080e489cb45e82bead11aa5d)
|
|
Related: #2087652
|
|
---
|
|
src/basic/alloc-util.h | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/src/basic/alloc-util.h b/src/basic/alloc-util.h
|
|
index 65d5175619..f57bcbdbcd 100644
|
|
--- a/src/basic/alloc-util.h
|
|
+++ b/src/basic/alloc-util.h
|
|
@@ -54,8 +54,8 @@ typedef void (*free_func_t)(void *p);
|
|
typeof(a)* _a = &(a); \
|
|
typeof(b)* _b = &(b); \
|
|
free(*_a); \
|
|
- (*_a) = (*_b); \
|
|
- (*_b) = NULL; \
|
|
+ *_a = *_b; \
|
|
+ *_b = NULL; \
|
|
0; \
|
|
})
|
|
|