aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorIain Sandoe <iain@sandoe.co.uk>2021-02-27 14:48:12 +0000
committerIain Sandoe <iain@sandoe.co.uk>2021-02-27 16:31:54 +0000
commita938e4616d62b020760e715902ee5edc0206498d (patch)
tree60b609390a07b46be171b56446c5fe0d8a51f765 /gcc
parente3eda9a0e12d1d6e56abb25b1930db0efc056cdc (diff)
downloadgcc-a938e4616d62b020760e715902ee5edc0206498d.zip
gcc-a938e4616d62b020760e715902ee5edc0206498d.tar.gz
gcc-a938e4616d62b020760e715902ee5edc0206498d.tar.bz2
Darwin : Update a disgnostic message [NFC].
The avoids a contraction and a format diagnostic warning. gcc/ChangeLog: * config/host-darwin.c (darwin_gt_pch_use_address): Modify diagnostic message to avoid use of a contraction and format warning.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/host-darwin.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/config/host-darwin.c b/gcc/config/host-darwin.c
index 1816c61..b101fca 100644
--- a/gcc/config/host-darwin.c
+++ b/gcc/config/host-darwin.c
@@ -61,7 +61,8 @@ darwin_gt_pch_use_address (void *addr, size_t sz, int fd, size_t off)
sz = (sz + pagesize - 1) / pagesize * pagesize;
if (munmap (pch_address_space + sz, sizeof (pch_address_space) - sz) != 0)
- fatal_error (input_location, "couldn%'t unmap pch_address_space: %m");
+ fatal_error (input_location,
+ "could not unmap %<pch_address_space%> %m");
if (ret)
{