From 8439b0818e7407ae6b9bf4ca454bb710b2860ffa Mon Sep 17 00:00:00 2001 From: Martin Liska Date: Wed, 1 Jul 2020 13:51:37 +0200 Subject: [PATCH] gcov: avoid trailing space. gcc/ChangeLog: * gcov.c (print_usage): Avoid trailing space for -j option. --- gcc/gcov.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/gcov.c b/gcc/gcov.c index 99c52f6a318..b2d2fda4563 100644 --- a/gcc/gcov.c +++ b/gcc/gcov.c @@ -898,7 +898,7 @@ print_usage (int error_p) fnotice (file, " -d, --display-progress Display progress information\n"); fnotice (file, " -f, --function-summaries Output summaries for each function\n"); fnotice (file, " -h, --help Print this help, then exit\n"); - fnotice (file, " -j, --json-format Output JSON intermediate format \n\ + fnotice (file, " -j, --json-format Output JSON intermediate format\n\ into .gcov.json.gz file\n"); fnotice (file, " -H, --human-readable Output human readable numbers\n"); fnotice (file, " -k, --use-colors Emit colored output\n"); -- 2.30.2