* debug_printf() from userland actually only worked if serial debug output was

turned on. That should explain Bruno's problems to get debug output from an
  accelerant. Thanks to Michael for the hint!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33651 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2009-10-19 08:32:38 +00:00
parent f1b1e2fc9a
commit 86860a0c07

View File

@ -1870,7 +1870,7 @@ _user_debug_output(const char* userString)
char string[512];
int32 length;
if (!sSerialDebugEnabled)
if (!sSerialDebugEnabled && !sSyslogOutputEnabled)
return;
if (!IS_USER_ADDRESS(userString))