diff options
Diffstat (limited to 'strvec.h')
-rw-r--r-- | strvec.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -33,7 +33,9 @@ struct strvec { size_t alloc; }; -#define STRVEC_INIT { empty_strvec, 0, 0 } +#define STRVEC_INIT { \ + .v = empty_strvec, \ +} /** * Initialize an array. This is no different than assigning from |