summaryrefslogtreecommitdiff
path: root/gcc/config/i386/host-cygwin.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/config/i386/host-cygwin.c')
-rw-r--r--gcc/config/i386/host-cygwin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/i386/host-cygwin.c b/gcc/config/i386/host-cygwin.c
index 1f831a6d461..ac699b3bf01 100644
--- a/gcc/config/i386/host-cygwin.c
+++ b/gcc/config/i386/host-cygwin.c
@@ -54,14 +54,14 @@ cygwin_gt_pch_get_address (size_t sz, int fd)
off_t p = lseek(fd, 0, SEEK_CUR);
if (p == (off_t) -1)
- fatal_error ("can't get position in PCH file: %m");
+ fatal_error ("can%'t get position in PCH file: %m");
/* Cygwin requires that the underlying file be at least
as large as the requested mapping. */
if ((size_t) p < sz)
{
if ( ftruncate (fd, sz) == -1 )
- fatal_error ("can't extend PCH file: %m");
+ fatal_error ("can%'t extend PCH file: %m");
}
base = mmap (NULL, sz, PROT_READ | PROT_WRITE, MAP_PRIVATE, fd, 0);
@@ -72,7 +72,7 @@ cygwin_gt_pch_get_address (size_t sz, int fd)
munmap (base, sz);
if (lseek (fd, p, SEEK_SET) == (off_t) -1 )
- fatal_error ("can't set position in PCH file: %m");
+ fatal_error ("can%'t set position in PCH file: %m");
return base;
}