diff options
Diffstat (limited to 'src/basic/macro.h')
-rw-r--r-- | src/basic/macro.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/macro.h b/src/basic/macro.h index 2770d01aa9..99262e9206 100644 --- a/src/basic/macro.h +++ b/src/basic/macro.h @@ -431,7 +431,7 @@ assert_cc(sizeof(dummy_t) == 0); }) /* Iterate through each variadic arg. All must be the same type as 'entry' or must be implicitly - * convertable. The iteration variable 'entry' must already be defined. */ + * convertible. The iteration variable 'entry' must already be defined. */ #define VA_ARGS_FOREACH(entry, ...) \ _VA_ARGS_FOREACH(entry, UNIQ_T(_entries_, UNIQ), UNIQ_T(_current_, UNIQ), ##__VA_ARGS__) #define _VA_ARGS_FOREACH(entry, _entries_, _current_, ...) \ |