diff options
| author | Michael Biebl <biebl@debian.org> | 2025-02-12 13:46:50 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2025-02-12 13:46:50 +0100 |
| commit | 8bdf070ff046f482f6eb5e2b15ebc216f5d1e3da (patch) | |
| tree | f706478d189d54c6532e8863d4b0d5ff5575af60 /src/libnm-glib-aux/nm-value-type.h | |
| parent | 818258cf34b83fbc754633295e1052d4752d7b15 (diff) | |
New upstream version 1.51.90 upstream/1.51.90
Diffstat (limited to 'src/libnm-glib-aux/nm-value-type.h')
| -rw-r--r-- | src/libnm-glib-aux/nm-value-type.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libnm-glib-aux/nm-value-type.h b/src/libnm-glib-aux/nm-value-type.h index 771021da..6a0379b7 100644 --- a/src/libnm-glib-aux/nm-value-type.h +++ b/src/libnm-glib-aux/nm-value-type.h @@ -60,7 +60,7 @@ typedef union { ({ \ NMValueTypUnion *const _arg2 = (_arg); \ \ - *_arg2 = (NMValueTypUnion){ \ + *_arg2 = (NMValueTypUnion) { \ ._type = (_val), \ }; \ _arg2; \ @@ -75,7 +75,7 @@ typedef struct { ({ \ NMValueTypUnioMaybe *const _arg2 = (_arg); \ \ - *_arg2 = (NMValueTypUnioMaybe){ \ + *_arg2 = (NMValueTypUnioMaybe) { \ .has = TRUE, \ .val._type = (_val), \ }; \ |