diff options
| author | Richard M. Stallman <rms@gnu.org> | 1994-03-06 22:07:19 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1994-03-06 22:07:19 +0000 |
| commit | fd80e3bbbae444bf80d49bd03436ea313b31c536 (patch) | |
| tree | a80c2b25952f936b919b7eacf93eb839c4a56f50 /src | |
| parent | a1ed3ba6544b7d109c4f9bec00be0e3013880c0b (diff) | |
| download | emacs-fd80e3bbbae444bf80d49bd03436ea313b31c536.tar.gz | |
(mark_object): Add no-op cast.
Diffstat (limited to 'src')
| -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) if (i != COMPILED_CONSTANTS) mark_object (&ptr1->contents[i]); } - objptr = &ptr1->contents[COMPILED_CONSTANTS]; + /* This cast should be unnecessary, but some Mips compiler complains + (MIPS-ABI + SysVR4, DC/OSx, etc). */ + objptr = (Lisp_Object *) &ptr1->contents[COMPILED_CONSTANTS]; goto loop; } |
