From 4f9b29d70b26542524236363cd4771fe92436761 Mon Sep 17 00:00:00 2001 From: "Guillermo J. Rozas" Date: Fri, 22 May 1992 21:08:48 +0000 Subject: [PATCH] Fix syntactic bugs (missing commas) and add a missing cast. --- v7/src/microcode/xdebug.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/v7/src/microcode/xdebug.c b/v7/src/microcode/xdebug.c index ca4d67940..d486c9745 100644 --- a/v7/src/microcode/xdebug.c +++ b/v7/src/microcode/xdebug.c @@ -1,6 +1,6 @@ /* -*-C-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/xdebug.c,v 9.29 1992/02/04 15:50:17 jinx Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/xdebug.c,v 9.30 1992/05/22 21:08:48 jinx Exp $ Copyright (c) 1987-1992 Massachusetts Institute of Technology @@ -138,13 +138,13 @@ DEFUN (Find_In_Area, (Name, From, To, Obj, Mode, print_p, store_p), ((long) Where), ((long) (*Where))); #endif if (store_p) - *Free++ = (LONG_TO_UNSIGNED_FIXNUM (Where)); + *Free++ = (LONG_TO_UNSIGNED_FIXNUM ((long) Where)); } return occurrences; } SCHEME_OBJECT -DEFUN (Find_Who_Points (Obj, Find_Mode, Collect_Mode), +DEFUN (Find_Who_Points, (Obj, Find_Mode, Collect_Mode), SCHEME_OBJECT Obj AND int Find_Mode AND int Collect_Mode) { @@ -187,8 +187,8 @@ DEFUN (Find_Who_Points (Obj, Find_Mode, Collect_Mode), } if (store_p) { - *Saved_Free = MAKE_OBJECT (TC_MANIFEST_VECTOR, n); - return MAKE_POINTER_OBJECT (TC_VECTOR, Saved_Free); + *Saved_Free = (MAKE_OBJECT (TC_MANIFEST_VECTOR, n)); + return (MAKE_POINTER_OBJECT (TC_VECTOR, Saved_Free)); } else { @@ -197,7 +197,7 @@ DEFUN (Find_Who_Points (Obj, Find_Mode, Collect_Mode), } void -DEFUN (Print_Memory, (Where, How_Many) +DEFUN (Print_Memory, (Where, How_Many), SCHEME_OBJECT * Where AND long How_Many) { -- 2.25.1