summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Kendrick (playpus) <rjek@rjek.com>2014-05-05 11:46:11 +0100
committerRob Kendrick (playpus) <rjek@rjek.com>2014-05-05 11:46:11 +0100
commite0e45e8ed374d1b3d9b8dc817b8168a069225ef1 (patch)
treeb274d88dd6f16215fc6944a4708a71d2f5ffb0d5
parentf5359a80ac92cc15d37a4db22c2ef781f2815bde (diff)
downloadluxio-e0e45e8ed374d1b3d9b8dc817b8168a069225ef1.tar.gz
Fix typo in execp
-rw-r--r--luxio/simple.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/luxio/simple.lua b/luxio/simple.lua
index 54cb13c..2288309 100644
--- a/luxio/simple.lua
+++ b/luxio/simple.lua
@@ -1384,7 +1384,7 @@ end
local lexecp = l.execp
local function execp(...)
- local r, errno = lexecp(d...)
+ local r, errno = lexecp(...)
return err("execp", errno)
end