summaryrefslogtreecommitdiff
path: root/xmake/core/sandbox/modules/utils.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2016-05-05 16:08:19 +0800
committerruki <[email protected]>2016-05-05 16:08:19 +0800
commit64cf81d6ddf726e3230b4fab852e4eb0b75c378d (patch)
tree341fa416034a0aa5c23aa17c513a7dcf85cb12b2 /xmake/core/sandbox/modules/utils.lua
parentf68de1b816bd631634a82d6cd8c8ea4636961a54 (diff)
reimpl build objects
Diffstat (limited to 'xmake/core/sandbox/modules/utils.lua')
-rw-r--r--xmake/core/sandbox/modules/utils.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/core/sandbox/modules/utils.lua b/xmake/core/sandbox/modules/utils.lua
index d419c257e..877234602 100644
--- a/xmake/core/sandbox/modules/utils.lua
+++ b/xmake/core/sandbox/modules/utils.lua
@@ -45,14 +45,14 @@ function sandbox_utils.print(format, ...)
end
-- done
- return io.write(vformat(format, ...) .. "\n")
+ io.write(vformat(format, ...) .. "\n")
end
-- printf with the builtin variables
function sandbox_utils.printf(format, ...)
-- done
- return io.write(vformat(format, ...))
+ io.write(vformat(format, ...))
end
-- assert