aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-10-31 20:02:45 +0100
committerThomas Voss <mail@thomasvoss.com> 2024-10-31 20:02:45 +0100
commita0cbd4f04311392b785cf260abe52e2eb5695312 (patch)
treee3ea0d94035b31e6911ef798ffcef23d93803f8c
parentab764964147fa6d49cfe808ea61bc8702d91e598 (diff)
Formatting
-rw-r--r--src/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c
index ec8eab4..439f353 100644
--- a/src/main.c
+++ b/src/main.c
@@ -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