summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--builds/unix/ftsystem.c3
-rw-r--r--builds/vms/ftsystem.c2
2 files changed, 2 insertions, 3 deletions
diff --git a/builds/unix/ftsystem.c b/builds/unix/ftsystem.c
index 7fc9941d8..81ed92858 100644
--- a/builds/unix/ftsystem.c
+++ b/builds/unix/ftsystem.c
@@ -313,8 +313,7 @@
file,
0 );
- /* on some RTOS, mmap might return 0 */
- if ( (long)stream->base != -1 && stream->base != NULL )
+ if ( stream->base != MAP_FAILED )
stream->close = ft_close_stream_by_munmap;
else
{
diff --git a/builds/vms/ftsystem.c b/builds/vms/ftsystem.c
index 7e56873ba..31b08708f 100644
--- a/builds/vms/ftsystem.c
+++ b/builds/vms/ftsystem.c
@@ -246,7 +246,7 @@
file,
0 );
- if ( (long)stream->base == -1 )
+ if ( stream->base == MAP_FAILED )
{
FT_ERROR(( "FT_Stream_Open:" ));
FT_ERROR(( " could not `mmap' file `%s'\n", filepathname ));