diff options
| author | Michael Biebl <biebl@debian.org> | 2024-06-24 12:22:54 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2024-06-24 12:22:54 +0200 |
| commit | f0c85a81d9fca02e98fdd5ab2d420932f8b2c818 (patch) | |
| tree | 8cce0c8aee1173d1de4eda574c82febff676c4a0 /src/core/platform | |
| parent | 0b2871ddd005e893aeffd13f5b1f293b10d35e56 (diff) | |
| parent | 8e2fde558a5af5c3b03a5112dbd8f9085c5a8369 (diff) | |
Update upstream source from tag 'upstream/1.48.2'
Update to upstream version '1.48.2' with Debian dir 6108d76f13ec8dc95dcf2fdd118769fc99065bf6
Diffstat (limited to 'src/core/platform')
| -rw-r--r-- | src/core/platform/tests/test-common.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/core/platform/tests/test-common.c b/src/core/platform/tests/test-common.c index fde7dc0d..99b8bc45 100644 --- a/src/core/platform/tests/test-common.c +++ b/src/core/platform/tests/test-common.c @@ -59,10 +59,8 @@ typedef struct { } IPTunnelModInfo; -#define INF(_module_name, _iftype, _ifname, ...) \ - { \ - .module_name = ""_module_name, .iftype = _iftype, .ifname = ""_ifname, __VA_ARGS__ \ - } +#define INF(_module_name, _iftype, _ifname, ...) \ + {.module_name = ""_module_name, .iftype = _iftype, .ifname = ""_ifname, __VA_ARGS__} static const IPTunnelModInfo ip_tunnel_mod_infos[] = { INF("ip_gre", NM_LINK_TYPE_GRE, "gre0"), |