diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2021-05-31 12:56:49 -0700 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2021-05-31 12:56:49 -0700 |
| commit | a67a25704406456cbd1d84115892c9cb5187b06c (patch) | |
| tree | 2e0eef9509d87b9a1c678dde6e78a49ba3e2788c /match.c | |
| parent | da6c8857d6bad131635a846e8177e7c00a4c224e (diff) | |
Fix compiler warning nits
Diffstat (limited to 'match.c')
| -rw-r--r-- | match.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -472,7 +472,7 @@ static match_t *match(def_t *defs, file_t *f, const char *str, pat_t *pat, bool return p ? new_match(pat, str, p->end, p) : NULL; } default: { - errx(EXIT_FAILURE, "Unknown pattern type: %d", pat->type); + errx(EXIT_FAILURE, "Unknown pattern type: %u", pat->type); return NULL; } } |
