summaryrefslogtreecommitdiff
path: root/ldblib.c
diff options
context:
space:
mode:
Diffstat (limited to 'ldblib.c')
-rw-r--r--ldblib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldblib.c b/ldblib.c
index 0bd3cc52..3c3dd468 100644
--- a/ldblib.c
+++ b/ldblib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldblib.c,v 1.6 1999/08/16 20:52:00 roberto Exp roberto $ 2** $Id: ldblib.c,v 1.7 1999/11/22 13:12:07 roberto Exp roberto $
3** Interface from Lua to its debug API 3** Interface from Lua to its debug API
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -214,6 +214,6 @@ static const struct luaL_reg dblib[] = {
214 214
215 215
216void lua_dblibopen (lua_State *L) { 216void lua_dblibopen (lua_State *L) {
217 luaL_openlib(L, dblib, (sizeof(dblib)/sizeof(dblib[0]))); 217 luaL_openl(L, dblib);
218} 218}
219 219