From a2407f384d4113ae9bfab36d48d605d74071ed55 Mon Sep 17 00:00:00 2001 From: "Guillermo J. Rozas" Date: Tue, 16 Nov 1993 02:34:33 +0000 Subject: [PATCH] Add cast to remove spurious warnings. --- v7/src/microcode/cmpintmd/c.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/v7/src/microcode/cmpintmd/c.h b/v7/src/microcode/cmpintmd/c.h index 502b0fe8a..3a9d463bd 100644 --- a/v7/src/microcode/cmpintmd/c.h +++ b/v7/src/microcode/cmpintmd/c.h @@ -1,6 +1,6 @@ /* -*-C-*- -$Id: c.h,v 1.5 1993/11/16 02:25:15 gjr Exp $ +$Id: c.h,v 1.6 1993/11/16 02:34:33 gjr Exp $ Copyright (c) 1992-1993 Massachusetts Institute of Technology @@ -82,8 +82,8 @@ extern int pc_zero_bits; #define FIRST_MANIFEST_CLOSURE_ENTRY(scan) \ (((COMPILED_ENTRY_OFFSET_WORD (((SCHEME_OBJECT *) (scan)) + 1)) == 0) \ - ? (((SCHEME_OBJECT *) (scan)) + 2) \ - : (((SCHEME_OBJECT *) (scan)) + 1)) + ? ((char *) (((SCHEME_OBJECT *) (scan)) + 2)) \ + : ((char *) (((SCHEME_OBJECT *) (scan)) + 1))) /* Trampolines are implemented as tiny compiled code blocks that invoke the constant C procedure indexed by the number 0. -- 2.25.1