diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2021-01-17 23:06:37 -0800 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2021-01-17 23:06:37 -0800 |
| commit | ffdf32da2f20d21d5adee1231e3ac8207edab78d (patch) | |
| tree | 25f05c94ab280d85b5934cc6607909a35c8c22fb /print.c | |
| parent | ff597be5fc52d1d8bd8050fc81050308f76c9b05 (diff) | |
Code cleanup on utils
Diffstat (limited to 'print.c')
| -rw-r--r-- | print.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -297,7 +297,7 @@ void _print_match(FILE *out, printer_t *pr, match_t *m) if (*r == '\\') { ++r; - unsigned char c = unescapechar(r, &r); + char c = unescapechar(r, &r); fputc(c, out); if (c == '\n') { ++line; |
