From f557939ffb3294581039e5f9eca2d759cda6a05f Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Thu, 9 Oct 2003 10:01:36 +0000 Subject: [PATCH] Send error output to stderr --- stepmania/PBProject/Installer/Helper.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/PBProject/Installer/Helper.mm b/stepmania/PBProject/Installer/Helper.mm index c2b1b6a6a7..c5784eecb5 100644 --- a/stepmania/PBProject/Installer/Helper.mm +++ b/stepmania/PBProject/Installer/Helper.mm @@ -68,7 +68,7 @@ void HandleFile(const CString& file, const CString& dir, const CString& archiveP { int fd_dev_null = open("/dev/null", O_RDWR, 0); - if (CallTool3(true, -1, fd_dev_null, fd_dev_null, path, arguments)) + if (CallTool3(true, -1, fd_dev_null, fileno(stderr), path, arguments)) [c postMessage:@"failed"]; close(fd_dev_null); }