diff options
author | Martin Liska <mliska@suse.cz> | 2020-07-01 13:51:37 +0200 |
---|---|---|
committer | Martin Liska <mliska@suse.cz> | 2020-07-01 13:51:37 +0200 |
commit | 8439b0818e7407ae6b9bf4ca454bb710b2860ffa (patch) | |
tree | 65179318f8b1b4f9bf79fb0336c878b6891d119d /gcc | |
parent | 7b3adfa7bb47e4ebde91634caa5a7e13175558f1 (diff) | |
download | gcc-8439b0818e7407ae6b9bf4ca454bb710b2860ffa.zip gcc-8439b0818e7407ae6b9bf4ca454bb710b2860ffa.tar.gz gcc-8439b0818e7407ae6b9bf4ca454bb710b2860ffa.tar.bz2 |
gcov: avoid trailing space.
gcc/ChangeLog:
* gcov.c (print_usage): Avoid trailing space for -j option.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/gcov.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"); |