diff options
| -rw-r--r-- | src/alloc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c index 402bc9486ef..b9299a060c2 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -1551,7 +1551,9 @@ mark_object (objptr) | |||
| 1551 | if (i != COMPILED_CONSTANTS) | 1551 | if (i != COMPILED_CONSTANTS) |
| 1552 | mark_object (&ptr1->contents[i]); | 1552 | mark_object (&ptr1->contents[i]); |
| 1553 | } | 1553 | } |
| 1554 | objptr = &ptr1->contents[COMPILED_CONSTANTS]; | 1554 | /* This cast should be unnecessary, but some Mips compiler complains |
| 1555 | (MIPS-ABI + SysVR4, DC/OSx, etc). */ | ||
| 1556 | objptr = (Lisp_Object *) &ptr1->contents[COMPILED_CONSTANTS]; | ||
| 1555 | goto loop; | 1557 | goto loop; |
| 1556 | } | 1558 | } |
| 1557 | 1559 | ||