From 03ec7514020663f1c35f2c4e9ffa20e8d89ab0ed Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Sun, 7 Feb 2016 19:07:38 +0100 Subject: [PATCH] nmtst: fix nmtst_test_data_unpack() macro Fixes: e6244814eb82d0c036a506e204878c0c9ccdac72 --- shared/nm-test-utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/nm-test-utils.h b/shared/nm-test-utils.h index ed31579b02..19030c53ee 100644 --- a/shared/nm-test-utils.h +++ b/shared/nm-test-utils.h @@ -685,7 +685,7 @@ _nmtst_test_data_unpack_detail (const NmtstTestData *test_data, const char **det va_end (ap); } #define nmtst_test_data_unpack_detail(test_data, detail, ...) _nmtst_test_data_unpack_detail(test_data, detail, NM_NARG (__VA_ARGS__), ##__VA_ARGS__) -#define nmtst_test_data_unpack(test_data, ...) nmtst_test_data_unpack(test_data, NULL, ##__VA_ARGS__) +#define nmtst_test_data_unpack(test_data, ...) nmtst_test_data_unpack_detail(test_data, NULL, ##__VA_ARGS__) inline static void _nmtst_test_data_free (gpointer data)