From 85dba49b542bed21d67c2b78d15ebaaf07caff97 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Thu, 20 May 2021 01:00:10 -0700 Subject: Fixed up JSON output --- bp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bp.c') diff --git a/bp.c b/bp.c index 6eb9c3a..f04c8de 100644 --- a/bp.c +++ b/bp.c @@ -165,7 +165,7 @@ static int is_text_file(const char *filename) // static int print_matches_as_json(def_t *defs, file_t *f, pat_t *pattern) { - int matches = 0; + static int matches = 0; for (match_t *m = NULL; (m = next_match(defs, f, m, pattern, options.skip, options.ignorecase)); ) { if (++matches > 1) printf(",\n"); @@ -173,7 +173,7 @@ static int print_matches_as_json(def_t *defs, file_t *f, pat_t *pattern) printf("\"tree\":{\"rule\":\"text\",\"start\":%d,\"end\":%ld,\"children\":[", 0, f->end - f->contents); json_match(f->contents, m, options.verbose); - printf("]}}\n"); + printf("]}}"); } return matches; } -- cgit v1.2.3