aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordavilla <davilla@4pi.com>2011-12-03 20:34:28 -0500
committerdavilla <davilla@4pi.com>2011-12-03 20:34:28 -0500
commit0a31dbe8082fed617d8ba36f855d015e01aceac5 (patch)
treeb234d8068c526b7a1f29e4240da54984e7d90386
parente835f45815ba5b75bbeb8f07f90334a39975ada4 (diff)
[osx] fixed, do not printf, they polute console log
-rw-r--r--xbmc/osx/XBMCHelper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/osx/XBMCHelper.cpp b/xbmc/osx/XBMCHelper.cpp
index 52a3c436d7..7c0dde3a63 100644
--- a/xbmc/osx/XBMCHelper.cpp
+++ b/xbmc/osx/XBMCHelper.cpp
@@ -94,7 +94,7 @@ void XBMCHelper::Start()
int pid = GetProcessPid(XBMC_HELPER_PROGRAM);
if (pid == -1)
{
- printf("Asking helper to start.\n");
+ //printf("Asking helper to start.\n");
// use -x to have XBMCHelper read its configure file
std::string cmd = "\"" + m_helperFile + "\" -x &";
system(cmd.c_str());