summaryrefslogtreecommitdiff
path: root/luaconf.h
diff options
context:
space:
mode:
Diffstat (limited to 'luaconf.h')
-rw-r--r--luaconf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/luaconf.h b/luaconf.h
index 8a57dddd..fc5c2db0 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luaconf.h,v 1.60 2005/08/17 18:32:09 roberto Exp roberto $ 2** $Id: luaconf.h,v 1.61 2005/08/22 19:58:29 roberto Exp roberto $
3** Configuration file for Lua 3** Configuration file for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -631,7 +631,7 @@ union luai_Cast { double l_d; long l_l; };
631#else 631#else
632 632
633#define lua_popen(L,c,m) \ 633#define lua_popen(L,c,m) \
634 ((void)c, (void)m, luaL_error(L, LUA_QL("popen") "not supported"), NULL) 634 ((void)c, (void)m, luaL_error(L, LUA_QL("popen") " not supported"), (FILE*)0)
635#define lua_pclose(L,file) ((void)file, 0) 635#define lua_pclose(L,file) ((void)file, 0)
636 636
637#endif 637#endif