From 34b45cc5266db9e4098df43bec898625a6004b77 Mon Sep 17 00:00:00 2001 From: Iain Sandoe Date: Tue, 8 Mar 2022 15:28:05 +0000 Subject: [PATCH] Darwin: Address a translation comment [PR104552]. This amends an error message to correct punctuation and a little better wording. Signed-off-by: Iain Sandoe 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. --- gcc/config/host-darwin.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/host-darwin.cc b/gcc/config/host-darwin.cc index d4289aeb4d38..01554d565f97 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; }