aboutsummaryrefslogtreecommitdiff
path: root/hash.c
diff options
context:
space:
mode:
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/hash.c b/hash.c
index db87645b..e5a0a485 100644
--- a/hash.c
+++ b/hash.c
@@ -3,7 +3,7 @@
3** hash manager for lua 3** hash manager for lua
4*/ 4*/
5 5
6char *rcs_hash="$Id: hash.c,v 2.21 1994/12/16 15:55:04 roberto Exp roberto $"; 6char *rcs_hash="$Id: hash.c,v 2.22 1994/12/20 21:20:36 roberto Exp roberto $";
7 7
8#include "mem.h" 8#include "mem.h"
9#include "opcode.h" 9#include "opcode.h"
@@ -185,10 +185,10 @@ static void call_fallbacks (void)
185** Garbage collection to arrays 185** Garbage collection to arrays
186** Delete all unmarked arrays. 186** Delete all unmarked arrays.
187*/ 187*/
188Word lua_hashcollector (void) 188Long lua_hashcollector (void)
189{ 189{
190 Hash *curr_array = listhead, *prev = NULL; 190 Hash *curr_array = listhead, *prev = NULL;
191 Word counter = 0; 191 Long counter = 0;
192 call_fallbacks(); 192 call_fallbacks();
193 while (curr_array != NULL) 193 while (curr_array != NULL)
194 { 194 {