Skip to content

Commit 0ce2b8f

Browse files
committed
Fixed compile error on Windows.
1 parent 7f8e739 commit 0ce2b8f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lua.patch

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,14 +141,14 @@ diff -r 8a23edc91533 src/luaconf.h
141141
+ lua_State *L;
142142
+ int ref;
143143
+#if !_WIN32
144-
+ int pid, fstdin, fstdout, fstderr, exit_status;
144+
+ int pid, fstdin, fstdout, fstderr;
145145
+#else
146146
+ HANDLE pid, fstdin, fstdout, fstderr;
147147
+#endif
148148
+#if (GTK && !__APPLE__)
149149
+ GIOChannel *cstdout, *cstderr;
150150
+#endif
151-
+ int stdout_cb, stderr_cb, exit_cb;
151+
+ int stdout_cb, stderr_cb, exit_cb, exit_status;
152152
+} PStream;
153153
+
154154
+/** p:status() Lua function. */

0 commit comments

Comments
 (0)