aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2019-04-19 12:38:45 -0700
committerPaul Eggert2019-04-19 12:57:30 -0700
commit7d84056df4b228509b723b11d69bf39e3d1e548a (patch)
tree815a7228395078dae97676b2f68f796ff3bdd73c /src
parent5e3e14f6e96fd99ac763bedccb0539551dcb1d29 (diff)
downloademacs-7d84056df4b228509b723b11d69bf39e3d1e548a.tar.gz
emacs-7d84056df4b228509b723b11d69bf39e3d1e548a.zip
Fix dump_map_file on unusual platforms
* src/pdumper.c (dump_map_file): Fix recently-introduced typo on platforms that support neither POSIX nor MS-Windows VM.
Diffstat (limited to 'src')
-rw-r--r--src/pdumper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pdumper.c b/src/pdumper.c
index 2cc9af7f56c..1bd94cb0036 100644
--- a/src/pdumper.c
+++ b/src/pdumper.c
@@ -4550,7 +4550,7 @@ dump_map_file (void *base, int fd, off_t offset, size_t size,
4550 return dump_map_file_w32 (base, fd, offset, size, protection); 4550 return dump_map_file_w32 (base, fd, offset, size, protection);
4551#else 4551#else
4552 errno = ENOSYS; 4552 errno = ENOSYS;
4553 return ret; 4553 return NULL;
4554#endif 4554#endif
4555} 4555}
4556 4556