diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-10-19 11:33:22 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-10-19 11:33:22 -0200 |
commit | 910836fb53cb80e93de666526714bc51f2c63510 (patch) | |
tree | 954e893d1ed30b8bcb1fc89b063e7b56472dd899 /lobject.h | |
parent | 8e7451512f01a89b4230be65cf086f7c1d41d2e2 (diff) | |
download | lua-910836fb53cb80e93de666526714bc51f2c63510.tar.gz lua-910836fb53cb80e93de666526714bc51f2c63510.tar.bz2 lua-910836fb53cb80e93de666526714bc51f2c63510.zip |
warnings from Visual C++
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 1.32 1999/10/11 16:13:11 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.33 1999/10/14 19:13:31 roberto Exp roberto $ |
3 | ** Type definitions for Lua objects | 3 | ** Type definitions for Lua objects |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -170,7 +170,7 @@ typedef struct node { | |||
170 | typedef struct Hash { | 170 | typedef struct Hash { |
171 | int htag; | 171 | int htag; |
172 | Node *node; | 172 | Node *node; |
173 | unsigned int size; | 173 | int size; |
174 | Node *firstfree; /* this position is free; all positions after it are full */ | 174 | Node *firstfree; /* this position is free; all positions after it are full */ |
175 | struct Hash *next; | 175 | struct Hash *next; |
176 | int marked; | 176 | int marked; |