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.
This commit is contained in:
parent
e3eda9a0e1
commit
a938e4616d
1 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue