diff options
author | Iain Sandoe <iain@sandoe.co.uk> | 2021-03-23 19:42:36 +0000 |
---|---|---|
committer | Iain Sandoe <iain@sandoe.co.uk> | 2021-03-23 19:42:36 +0000 |
commit | 7af8ec508f8105a4c4ea94246c1c4c25596cf6a5 (patch) | |
tree | 687eaa05a53f8bcb204bf09877fc87668b062c53 | |
parent | bd71889b9017751e1a06970d20b28b9fe9479bdc (diff) | |
download | gcc-7af8ec508f8105a4c4ea94246c1c4c25596cf6a5.zip gcc-7af8ec508f8105a4c4ea94246c1c4c25596cf6a5.tar.gz gcc-7af8ec508f8105a4c4ea94246c1c4c25596cf6a5.tar.bz2 |
Darwin : Address a translation comment.
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.
-rw-r--r-- | gcc/config/host-darwin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/host-darwin.c b/gcc/config/host-darwin.c index b101fca..14a01fe 100644 --- a/gcc/config/host-darwin.c +++ b/gcc/config/host-darwin.c @@ -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) { |