diff options
Diffstat (limited to 'src/lib_io.c')
-rw-r--r-- | src/lib_io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib_io.c b/src/lib_io.c index 90bc863b..ad99b9b7 100644 --- a/src/lib_io.c +++ b/src/lib_io.c | |||
@@ -405,7 +405,7 @@ LJLIB_CF(io_popen) | |||
405 | #endif | 405 | #endif |
406 | return iof->fp != NULL ? 1 : io_pushresult(L, 0, fname); | 406 | return iof->fp != NULL ? 1 : io_pushresult(L, 0, fname); |
407 | #else | 407 | #else |
408 | luaL_error(L, LUA_QL("popen") " not supported"); | 408 | return luaL_error(L, LUA_QL("popen") " not supported"); |
409 | #endif | 409 | #endif |
410 | } | 410 | } |
411 | 411 | ||