diff options
| author | Richard M. Stallman | 1994-03-06 22:07:19 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-03-06 22:07:19 +0000 |
| commit | fd80e3bbbae444bf80d49bd03436ea313b31c536 (patch) | |
| tree | a80c2b25952f936b919b7eacf93eb839c4a56f50 /src/alloc.c | |
| parent | a1ed3ba6544b7d109c4f9bec00be0e3013880c0b (diff) | |
| download | emacs-fd80e3bbbae444bf80d49bd03436ea313b31c536.tar.gz emacs-fd80e3bbbae444bf80d49bd03436ea313b31c536.zip | |
(mark_object): Add no-op cast.
Diffstat (limited to 'src/alloc.c')
| -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 | ||