]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
gcov: Fix "subcomand" typos [PR109297]
authorJonathan Wakely <jwakely@redhat.com>
Mon, 27 Mar 2023 12:46:46 +0000 (13:46 +0100)
committerJonathan Wakely <jwakely@redhat.com>
Mon, 27 Mar 2023 12:48:14 +0000 (13:48 +0100)
gcc/ChangeLog:

PR gcov-profile/109297
* gcov-tool.cc (merge_usage): Fix "subcomand" typo.
(merge_stream_usage): Likewise.
(overlap_usage): Likewise.

gcc/gcov-tool.cc

index 88b7936a4f443485309d9e29fc21a46bbe38d5e4..0140e7f2a4a350210a3c4e3d09c88cbbb1e0a2f7 100644 (file)
@@ -185,7 +185,7 @@ static const struct option merge_options[] =
 static void ATTRIBUTE_NORETURN
 merge_usage (void)
 {
-  fnotice (stderr, "Merge subcomand usage:");
+  fnotice (stderr, "Merge subcommand usage:");
   print_merge_usage_message (true);
   exit (FATAL_EXIT_CODE);
 }
@@ -255,7 +255,7 @@ static const struct option merge_stream_options[] =
 static void ATTRIBUTE_NORETURN
 merge_stream_usage (void)
 {
-  fnotice (stderr, "Merge-stream subcomand usage:");
+  fnotice (stderr, "Merge-stream subcommand usage:");
   print_merge_stream_usage_message (true);
   exit (FATAL_EXIT_CODE);
 }
@@ -507,7 +507,7 @@ static const struct option overlap_options[] =
 static void ATTRIBUTE_NORETURN
 overlap_usage (void)
 {
-  fnotice (stderr, "Overlap subcomand usage:");
+  fnotice (stderr, "Overlap subcommand usage:");
   print_overlap_usage_message (true);
   exit (FATAL_EXIT_CODE);
 }