From 35d00cba52690c5ea0d94e5231274bcbdced80f2 Mon Sep 17 00:00:00 2001 From: Martin Stjernholm <mast@lysator.liu.se> Date: Mon, 2 Jul 2001 18:25:29 +0200 Subject: [PATCH] Fixed warning about too large constant(?). Rev: src/global.h:1.63 --- src/global.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/global.h b/src/global.h index f82f7dc0b1..5d40000990 100644 --- a/src/global.h +++ b/src/global.h @@ -5,7 +5,7 @@ \*/ /* - * $Id: global.h,v 1.62 2001/06/10 00:22:47 grubba Exp $ + * $Id: global.h,v 1.63 2001/07/02 16:25:29 mast Exp $ */ #ifndef GLOBAL_H #define GLOBAL_H @@ -203,7 +203,7 @@ void *alloca(); #endif #define MAX_INT32 2147483647 -#define MIN_INT32 -(INT32)2147483648 +#define MIN_INT32 (-2147483647-1) #define INT16 short #define INT8 char -- GitLab