diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2021-01-18 11:39:20 -0800 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2021-01-18 11:39:20 -0800 |
| commit | 4b3579c968a5f6c9239ee6235f03108d80e1a2e3 (patch) | |
| tree | ec318cefbd3433a24a0c6d4614e3a3e09400301e /pattern.c | |
| parent | 0b0e99bfac8e11463ae15211882aab98ba150dcb (diff) | |
More bools, because why not
Diffstat (limited to 'pattern.c')
| -rw-r--r-- | pattern.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12,7 +12,7 @@ #include "pattern.h" #include "utils.h" -#define file_err(f, ...) do { fprint_line(stderr, f, __VA_ARGS__); exit(EXIT_FAILURE); } while(0) +#define file_err(f, ...) do { fprint_line(stderr, f, __VA_ARGS__); exit(EXIT_FAILURE); } while(false) __attribute__((nonnull)) static pat_t *expand_chain(file_t *f, pat_t *first); |
