Converted to the new debug interface, using script written by Patrik
Stridvall.
diff --git a/graphics/x11drv/init.c b/graphics/x11drv/init.c
index 76c597a..2ea67e7 100644
--- a/graphics/x11drv/init.c
+++ b/graphics/x11drv/init.c
@@ -14,7 +14,7 @@
#include "bitmap.h"
#include "color.h"
-#include "debug.h"
+#include "debugtools.h"
#include "ldt.h"
#include "local.h"
#include "monitor.h"
@@ -171,7 +171,7 @@
/* Finish up device caps */
#if 0
- TRACE(x11drv, "Height = %-4i pxl, %-4i mm, Width = %-4i pxl, %-4i mm\n",
+ TRACE("Height = %-4i pxl, %-4i mm, Width = %-4i pxl, %-4i mm\n",
HeightOfScreen(X11DRV_GetXScreen()), HeightMMOfScreen(X11DRV_GetXScreen()),
WidthOfScreen(X11DRV_GetXScreen()), WidthMMOfScreen(X11DRV_GetXScreen()) );
#endif
@@ -222,7 +222,7 @@
dc->physDev = physDev = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
sizeof(*physDev) );
if(!physDev) {
- ERR(x11drv, "Can't allocate physDev\n");
+ ERR("Can't allocate physDev\n");
return FALSE;
}