diff options
author | Mike Pall <mike> | 2012-06-10 01:38:44 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2012-06-10 02:01:25 +0200 |
commit | b8f5727ab4ab5656b19cdb2c71a92611836b5458 (patch) | |
tree | afff6234da61ae8d3a513359a68c88cdb7b6159c /src/lib_io.c | |
parent | 37be8a54785b893f531679adb0b479a426938504 (diff) | |
download | luajit-b8f5727ab4ab5656b19cdb2c71a92611836b5458.tar.gz luajit-b8f5727ab4ab5656b19cdb2c71a92611836b5458.tar.bz2 luajit-b8f5727ab4ab5656b19cdb2c71a92611836b5458.zip |
CONSOLE: Fix PS3 build.
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 | ||