From f069cba4490ff82d0c98a74d9b698463cb3a1273 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 3378e45f6..e85457e7a 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; -- 2.34.1