diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2009-12-27 22:32:13 +0100 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2009-12-27 22:32:13 +0100 |
commit | 04bfbe54f86d0e34abe2a7bf5c468e20e75a9a21 (patch) | |
tree | 5c3e0e59364d4ef6cbd10a0240dc563ef72b48a2 /lib/LuaHandle.cc | |
parent | 86ea7a0f67a7dfb2b46c2f0a71cd7fd001457a10 (diff) |
Fixing parameters.
Diffstat (limited to 'lib/LuaHandle.cc')
-rw-r--r-- | lib/LuaHandle.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/LuaHandle.cc b/lib/LuaHandle.cc index 044f427..363509e 100644 --- a/lib/LuaHandle.cc +++ b/lib/LuaHandle.cc @@ -371,7 +371,7 @@ int sLuaHandle::readU32(lua_State * L) { return read(L, U32); } -int sLuaHandle::readU64(lua_State * L) { +int sLuaHandle::readU64(lua_State * __L) { Lua * L = Lua::find(__L); int n = L->gettop(); lua_Number r; @@ -402,7 +402,7 @@ int sLuaHandle::read32(lua_State * L) { return read(L, I32); } -int sLuaHandle::read64(lua_State * L) { +int sLuaHandle::read64(lua_State * __L) { Lua * L = Lua::find(__L); int n = L->gettop(); lua_Number r; @@ -504,7 +504,7 @@ int sLuaHandle::writeU32(lua_State * L) { return write(L, U32); } -int sLuaHandle::writeU64(lua_State * L) { +int sLuaHandle::writeU64(lua_State * __L) { Lua * L = Lua::find(__L); int n = L->gettop(); lua_Number r; @@ -534,7 +534,7 @@ int sLuaHandle::write32(lua_State * L) { return write(L, I32); } -int sLuaHandle::write64(lua_State * L) { +int sLuaHandle::write64(lua_State * __L) { Lua * L = Lua::find(__L); int n = L->gettop(); lua_Number r; |