diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2011-08-14 14:14:29 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2011-08-14 14:14:29 -0300 |
commit | 0cdc12f51e164c08962b05b830628b2ed867d2db (patch) | |
tree | 44a7b885cb173513cb1a0a3707d1211f6cf3a2a7 /src | |
parent | dd8d607cd77677f509304bba1737664243a89fd0 (diff) | |
download | luarocks-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.lua | 2 |
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 |
261 | function printerr(...) | 261 | function 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") |
264 | end | 264 | end |
265 | 265 | ||