aboutsummaryrefslogtreecommitdiff
path: root/bpeg.c
diff options
context:
space:
mode:
Diffstat (limited to 'bpeg.c')
-rw-r--r--bpeg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bpeg.c b/bpeg.c
index 4e3ef5b..a8812d7 100644
--- a/bpeg.c
+++ b/bpeg.c
@@ -81,7 +81,7 @@ static int run_match(grammar_t *g, const char *filename, vm_op_t *pattern, unsig
if (flags & BPEG_EXPLAIN) {
if (filename) {
- printf("\033[1;4m%s:\033[0m\n", filename);
+ printf("\033[1;4m%s\033[0m\n", filename);
}
/*
if (printed_matches > 1)
@@ -107,7 +107,7 @@ static int run_match(grammar_t *g, const char *filename, vm_op_t *pattern, unsig
fputc('\n', stdout);
if (filename) {
if (print_options & PRINT_COLOR)
- printf("\033[1;4;33m%s:\033[0m\n", filename);
+ printf("\033[1;4;33m%s\033[0m\n", filename);
else
printf("%s:\n", filename);
}