diff options
| author | Paul Eggert | 2019-04-19 12:38:45 -0700 |
|---|---|---|
| committer | Paul Eggert | 2019-04-19 12:57:30 -0700 |
| commit | 7d84056df4b228509b723b11d69bf39e3d1e548a (patch) | |
| tree | 815a7228395078dae97676b2f68f796ff3bdd73c /src | |
| parent | 5e3e14f6e96fd99ac763bedccb0539551dcb1d29 (diff) | |
| download | emacs-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.c | 2 |
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 | ||