aboutsummaryrefslogtreecommitdiff
path: root/gcc/config
diff options
context:
space:
mode:
authorIain Sandoe <iain@sandoe.co.uk>2022-03-08 15:28:05 +0000
committerIain Sandoe <iain@sandoe.co.uk>2022-03-08 19:29:47 +0000
commit34b45cc5266db9e4098df43bec898625a6004b77 (patch)
treec89986fd4144ee8c43fdd467c869d0b986bfd16b /gcc/config
parentb7175f36812b32d3de242f15c065b9cb68e957a9 (diff)
downloadgcc-34b45cc5266db9e4098df43bec898625a6004b77.zip
gcc-34b45cc5266db9e4098df43bec898625a6004b77.tar.gz
gcc-34b45cc5266db9e4098df43bec898625a6004b77.tar.bz2
Darwin: Address a translation comment [PR104552].
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.
Diffstat (limited to 'gcc/config')
-rw-r--r--gcc/config/host-darwin.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/host-darwin.cc b/gcc/config/host-darwin.cc
index d4289ae..01554d5 100644
--- a/gcc/config/host-darwin.cc
+++ b/gcc/config/host-darwin.cc
@@ -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;
}