summaryrefslogtreecommitdiff
path: root/src/alloc.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2011-04-17 21:08:35 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2011-04-17 21:08:35 -0700
commit0b432f213c529745b3a8315db6356199fde2ec25 (patch)
tree1991254b0a32a24736790b48d2646f1da48df99a /src/alloc.c
parentcc2e7b46b8c45216af99090b1ffd683a493c1564 (diff)
downloademacs-0b432f213c529745b3a8315db6356199fde2ec25.tar.gz
* alloc.c (BLOCK BYTES): Fix typo by changing "ablock" to "ablocks".
This doesn't fix a bug but makes the code clearer.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 412527b41a0..ca4abba9f8d 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -835,7 +835,7 @@ lisp_free (POINTER_TYPE *block)
nothing else. */
#define BLOCK_PADDING 0
#define BLOCK_BYTES \
- (BLOCK_ALIGN - sizeof (struct ablock *) - BLOCK_PADDING)
+ (BLOCK_ALIGN - sizeof (struct ablocks *) - BLOCK_PADDING)
/* Internal data structures and constants. */