Darwin : Address a translation comment.
authorIain Sandoe <iain@sandoe.co.uk>
Tue, 23 Mar 2021 19:42:36 +0000 (19:42 +0000)
committerIain Sandoe <iain@sandoe.co.uk>
Tue, 23 Mar 2021 19:42:36 +0000 (19:42 +0000)
Add a ':' to make the diagnostic read 'pch_address_space': xxx.

gcc/ChangeLog:

PR target/99733
* config/host-darwin.c (darwin_gt_pch_use_address): Add a
colon to the diagnostic message.

gcc/config/host-darwin.c

index b101fca..14a01fe 100644 (file)
@@ -62,7 +62,7 @@ darwin_gt_pch_use_address (void *addr, size_t sz, int fd, size_t off)
 
   if (munmap (pch_address_space + sz, sizeof (pch_address_space) - sz) != 0)
     fatal_error (input_location,
-                "could not unmap %<pch_address_space%> %m");
+                "could not unmap %<pch_address_space%>: %m");
 
   if (ret)
     {