From 36dbf9fb2242e836c6a9b5aea7bebd881e90f0f7 Mon Sep 17 00:00:00 2001 From: Damien Doligez Date: Tue, 29 Jul 1997 13:06:05 +0000 Subject: [PATCH] Fix warning gcc. git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1669 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02 --- byterun/gc_ctrl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/byterun/gc_ctrl.c b/byterun/gc_ctrl.c index 281e0800c..27e214004 100644 --- a/byterun/gc_ctrl.c +++ b/byterun/gc_ctrl.c @@ -146,7 +146,7 @@ static unsigned long norm_pfree (p) static unsigned long norm_pmax (p) unsigned long p; { - return Max (p, 0); + return p; } static long norm_heapincr (i)