Darwin: Address a translation comment [PR104552].
authorIain Sandoe <iain@sandoe.co.uk>
Tue, 8 Mar 2022 15:28:05 +0000 (15:28 +0000)
committerIain Sandoe <iain@sandoe.co.uk>
Tue, 8 Mar 2022 19:29:47 +0000 (19:29 +0000)
This amends an error message to correct punctuation and a little
better wording.

Signed-off-by: Iain Sandoe <iain@sandoe.co.uk>
PR translation/104552

gcc/ChangeLog:

* config/host-darwin.cc (darwin_gt_pch_get_address): Amend
the PCH out of memory error message punctuation and wording.

gcc/config/host-darwin.cc

index d4289ae..01554d5 100644 (file)
@@ -104,7 +104,7 @@ darwin_gt_pch_get_address (size_t sz, int fd)
      space.  */
   if (addr == (void *) MAP_FAILED)
     {
-      error ("PCH memory not available %m");
+      error ("PCH memory is not available: %m");
       return NULL;
     }