diff options
| author | Glenn Morris | 2008-05-23 04:41:33 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-05-23 04:41:33 +0000 |
| commit | cc4a96c68033373445cc62eacec68dfd67900105 (patch) | |
| tree | 9d5444485fd2c1c5bb1194ce1f63d8675efcf722 /src/gmalloc.c | |
| parent | 5cb66178eb202074c24804172e9f0c2c41a8d70e (diff) | |
| download | emacs-cc4a96c68033373445cc62eacec68dfd67900105.tar.gz emacs-cc4a96c68033373445cc62eacec68dfd67900105.zip | |
Spelling fix.
Diffstat (limited to 'src/gmalloc.c')
| -rw-r--r-- | src/gmalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gmalloc.c b/src/gmalloc.c index bd8fe344cbd..1cf9a8ee9b5 100644 --- a/src/gmalloc.c +++ b/src/gmalloc.c | |||
| @@ -911,7 +911,7 @@ _malloc_internal_nolock (size) | |||
| 911 | final free block; if so we don't need to get as much. */ | 911 | final free block; if so we don't need to get as much. */ |
| 912 | if (_heaplimit != 0 && block + lastblocks == _heaplimit && | 912 | if (_heaplimit != 0 && block + lastblocks == _heaplimit && |
| 913 | /* We can't do this if we will have to make the heap info | 913 | /* We can't do this if we will have to make the heap info |
| 914 | table bigger to accomodate the new space. */ | 914 | table bigger to accommodate the new space. */ |
| 915 | block + wantblocks <= heapsize && | 915 | block + wantblocks <= heapsize && |
| 916 | get_contiguous_space ((wantblocks - lastblocks) * BLOCKSIZE, | 916 | get_contiguous_space ((wantblocks - lastblocks) * BLOCKSIZE, |
| 917 | ADDRESS (block + lastblocks))) | 917 | ADDRESS (block + lastblocks))) |