aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 7c671e25cfc..62c3beec1d2 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -1138,8 +1138,8 @@ lisp_align_malloc (size_t nbytes, enum mem_type type)
1138 } 1138 }
1139 1139
1140 abase = ABLOCK_ABASE (free_ablock); 1140 abase = ABLOCK_ABASE (free_ablock);
1141 ABLOCKS_BUSY (abase) = 1141 ABLOCKS_BUSY (abase)
1142 (struct ablocks *) (2 + (intptr_t) ABLOCKS_BUSY (abase)); 1142 = (struct ablocks *) (2 + (intptr_t) ABLOCKS_BUSY (abase));
1143 val = free_ablock; 1143 val = free_ablock;
1144 free_ablock = free_ablock->x.next_free; 1144 free_ablock = free_ablock->x.next_free;
1145 1145