aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2011-08-14 14:14:29 -0300
committerHisham Muhammad <hisham@gobolinux.org>2011-08-14 14:14:29 -0300
commit0cdc12f51e164c08962b05b830628b2ed867d2db (patch)
tree44a7b885cb173513cb1a0a3707d1211f6cf3a2a7 /src
parentdd8d607cd77677f509304bba1737664243a89fd0 (diff)
downloadluarocks-0cdc12f51e164c08962b05b830628b2ed867d2db.tar.gz
luarocks-0cdc12f51e164c08962b05b830628b2ed867d2db.tar.bz2
luarocks-0cdc12f51e164c08962b05b830628b2ed867d2db.zip
oops, use stderr with printerr!
Diffstat (limited to 'src')
-rw-r--r--src/luarocks/util.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/luarocks/util.lua b/src/luarocks/util.lua
index 0ff36f3e..562953d9 100644
--- a/src/luarocks/util.lua
+++ b/src/luarocks/util.lua
@@ -259,7 +259,7 @@ end
259 259
260--- Print a line to standard error 260--- Print a line to standard error
261function printerr(...) 261function printerr(...)
262 io.stdout:write(table.concat({...},"\t")) 262 io.stderr:write(table.concat({...},"\t"))
263 io.stderr:write("\n") 263 io.stderr:write("\n")
264end 264end
265 265