diff options
Diffstat (limited to 'support.c')
-rw-r--r-- | support.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -43,7 +43,7 @@ void eq() void cons() { int32_t *st = &stack; - int32_t *pair = malloc(2 * sizeof(int32_t)); + int32_t *pair = (int32_t *)malloc(2 * sizeof(int32_t)); --sp; pair[0] = st[sp]; pair[1] = st[sp - 1]; |