aboutsummaryrefslogtreecommitdiff
path: root/src/select.c
diff options
context:
space:
mode:
authorLiam Devine <dmail00@gmail.com>2011-07-04 23:31:14 +0100
committerSam Roberts <vieuxtech@gmail.com>2012-04-11 13:33:34 -0700
commite15ed19db6eb3385c1b35219c2dfa11953c3d47e (patch)
tree4e38a0b05ac7cbaaa449f2b32dc959409ceae9ea /src/select.c
parenta984607f28d0a802acaf1a16da225234af769baa (diff)
downloadluasocket-e15ed19db6eb3385c1b35219c2dfa11953c3d47e.tar.gz
luasocket-e15ed19db6eb3385c1b35219c2dfa11953c3d47e.tar.bz2
luasocket-e15ed19db6eb3385c1b35219c2dfa11953c3d47e.zip
Compiles with Lua 5.1.4 and Lua 5.2.0-beta, although the makefile needs sorting out to take maybe a version number and also the local paths need removing.
Diffstat (limited to 'src/select.c')
-rw-r--r--src/select.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/select.c b/src/select.c
index 0931b73..87b5dc2 100644
--- a/src/select.c
+++ b/src/select.c
@@ -27,7 +27,7 @@ static void make_assoc(lua_State *L, int tab);
27static int global_select(lua_State *L); 27static int global_select(lua_State *L);
28 28
29/* functions in library namespace */ 29/* functions in library namespace */
30static luaL_reg func[] = { 30static luaL_Reg func[] = {
31 {"select", global_select}, 31 {"select", global_select},
32 {NULL, NULL} 32 {NULL, NULL}
33}; 33};