From 9d0982982f6ebc96b43d16c4a437395d2a8bbeae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net> Date: Thu, 9 Apr 1998 21:37:38 -0700 Subject: [PATCH] minor bugfix Rev: src/gc.c:1.33 --- src/gc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gc.c b/src/gc.c index f1e11d7a10..85eeefce2f 100644 --- a/src/gc.c +++ b/src/gc.c @@ -25,7 +25,7 @@ struct callback *gc_evaluator_callback=0; #include "main.h" #include <math.h> -RCSID("$Id: gc.c,v 1.32 1998/04/08 00:58:46 hubbe Exp $"); +RCSID("$Id: gc.c,v 1.33 1998/04/10 04:37:38 hubbe Exp $"); /* Run garbage collect approximate every time we have * 20 percent of all arrays, objects and programs is @@ -98,7 +98,7 @@ static unsigned long hashsize=0; static struct marker *getmark(void *a) { - int hashval; + unsigned long hashval; struct marker *m; hashval=((unsigned long)a)%hashsize; -- GitLab