Fix: accept variable list of arguments from SIDE_PTR_INIT
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Thu, 21 Sep 2023 06:34:36 +0000 (07:34 +0100)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Thu, 21 Sep 2023 06:34:36 +0000 (07:34 +0100)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
include/side/macros.h

index 5a368bfd6b01637c7045b31abe1cb55f6dc0931f..20fa97e804f07d76aae19d2afe1fe765620e6812 100644 (file)
        } while (0)
 #endif
 
-#define SIDE_PTR_INIT(x)       { .v = (uintptr_t) (x) }
+#define SIDE_PTR_INIT(...)     { .v = (uintptr_t) (__VA_ARGS__) }
 
 #endif /* _SIDE_MACROS_H */
This page took 0.031168 seconds and 4 git commands to generate.