From 35d142194c1f83ef81c52e4dc592d80b86570885 Mon Sep 17 00:00:00 2001 From: ceriel Date: Tue, 28 Mar 1995 09:10:31 +0000 Subject: [PATCH] Made arith_sign more portable --- lang/cem/cpp.ansi/ch3bin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/cem/cpp.ansi/ch3bin.c b/lang/cem/cpp.ansi/ch3bin.c index 3378e45f..e85457e7 100644 --- a/lang/cem/cpp.ansi/ch3bin.c +++ b/lang/cem/cpp.ansi/ch3bin.c @@ -8,7 +8,7 @@ #include "Lpars.h" #include "arith.h" -#define arith_sign (1 << (sizeof(arith)*8-1)) +#define arith_sign (1L << (sizeof(arith)*8-1)) ch3bin(pval, pis_uns, oper, val, is_uns) register arith *pval, val;