diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-10-31 20:02:45 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-10-31 20:02:45 +0100 |
commit | a0cbd4f04311392b785cf260abe52e2eb5695312 (patch) | |
tree | e3ea0d94035b31e6911ef798ffcef23d93803f8c /src | |
parent | ab764964147fa6d49cfe808ea61bc8702d91e598 (diff) |
Formatting
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -296,12 +296,12 @@ pattern_comp(u8view_t pat) if (re.len == 0) { if (op.c != 'h') { cerr(EXIT_FATAL, "%s%c%s operator given empty regex", - lquot, op.c, rquot); + lquot, op.c, rquot); } if (array_len(ops) == 0) { cerr(EXIT_FATAL, - "%sh%s operator given empty regex as the first operator", - lquot, rquot); + "%sh%s operator given empty regex as the first operator", + lquot, rquot); } op.re = ops[array_len(ops) - 1].re; #if DEBUG |