From 54c5b264e31509752ccd4ef249443821fec411a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Tue, 29 Mar 2005 15:15:12 +0000 Subject: [PATCH] No longer use private syscall, but the Debug.h function directly. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12116 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/accelerants/common/ddc_int.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/add-ons/accelerants/common/ddc_int.h b/src/add-ons/accelerants/common/ddc_int.h index e2b63e9394..50e8cc9b77 100644 --- a/src/add-ons/accelerants/common/ddc_int.h +++ b/src/add-ons/accelerants/common/ddc_int.h @@ -8,10 +8,10 @@ */ // no dprintf in user space, but if you know the trick ;) -void _kdprintf_(const char *format, ...); +void _sPrintf(const char *format, ...); //bool set_dprintf_enabled(bool); /* returns old enable flag */ -#define dprintf _kdprintf_ +#define dprintf _sPrintf // don't use variables here as this is a static library // and thus the variables will collide with the main program