aboutsummaryrefslogtreecommitdiff
path: root/lapi.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-12-03 13:45:15 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-12-03 13:45:15 -0200
commit5ca2709ba055901ba9d658aa2ca51e0682dfdb30 (patch)
tree89a4b5b3252e0c50eed39132493f6a5a362660ac /lapi.c
parentbb1cb7b9f112be1fb8453cc7ef4cbaf544850618 (diff)
downloadlua-5ca2709ba055901ba9d658aa2ca51e0682dfdb30.tar.gz
lua-5ca2709ba055901ba9d658aa2ca51e0682dfdb30.tar.bz2
lua-5ca2709ba055901ba9d658aa2ca51e0682dfdb30.zip
small warnings
Diffstat (limited to 'lapi.c')
-rw-r--r--lapi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lapi.c b/lapi.c
index 6db29a61..65cd28b4 100644
--- a/lapi.c
+++ b/lapi.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lapi.c,v 1.27 1998/08/21 17:43:44 roberto Exp roberto $ 2** $Id: lapi.c,v 1.28 1998/09/07 18:59:59 roberto Exp roberto $
3** Lua API 3** Lua API
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -34,7 +34,7 @@ TObject *luaA_Address (lua_Object o) {
34} 34}
35 35
36 36
37static int normalized_type (TObject *o) 37static lua_Type normalized_type (TObject *o)
38{ 38{
39 int t = ttype(o); 39 int t = ttype(o);
40 switch (t) { 40 switch (t) {