diff options
| author | Andreas Schwab | 2007-08-19 00:15:46 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2007-08-19 00:15:46 +0000 |
| commit | 2c4685eed1f791857f663ca774cd9d81959e0fb6 (patch) | |
| tree | b251c5a8a78ab98e1faf79fbf6aa33a9fc30af1d /src/alloc.c | |
| parent | e01e5b4d0f629973cd3a46ba61d43b3bef34590f (diff) | |
| download | emacs-2c4685eed1f791857f663ca774cd9d81959e0fb6.tar.gz emacs-2c4685eed1f791857f663ca774cd9d81959e0fb6.zip | |
(pure): Round PURESIZE up.
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c index a69f5045713..2947e48f815 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -266,7 +266,7 @@ Lisp_Object Vmemory_full; | |||
| 266 | remapping on more recent systems because this is less important | 266 | remapping on more recent systems because this is less important |
| 267 | nowadays than in the days of small memories and timesharing. */ | 267 | nowadays than in the days of small memories and timesharing. */ |
| 268 | 268 | ||
| 269 | EMACS_INT pure[PURESIZE / sizeof (EMACS_INT)] = {1,}; | 269 | EMACS_INT pure[(PURESIZE + sizeof (EMACS_INT) - 1) / sizeof (EMACS_INT)] = {1,}; |
| 270 | #define PUREBEG (char *) pure | 270 | #define PUREBEG (char *) pure |
| 271 | 271 | ||
| 272 | #else /* HAVE_SHM */ | 272 | #else /* HAVE_SHM */ |