From 771980fc02c79bb44e8cee48da9ba159e6baeaa6 Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Mon, 20 Aug 2018 17:01:24 -0400 Subject: [PATCH] xfree86: Remove some not-terribly-useful debugging I'm sure printing the address of function pointers in modules you'd loaded might have made sense back when we rolled our own dlopen, but we got better. Signed-off-by: Adam Jackson --- hw/xfree86/common/xf86Init.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/hw/xfree86/common/xf86Init.c b/hw/xfree86/common/xf86Init.c index 36a3c4ef6..12daa44d6 100644 --- a/hw/xfree86/common/xf86Init.c +++ b/hw/xfree86/common/xf86Init.c @@ -721,11 +721,6 @@ InitOutput(ScreenInfo * pScreenInfo, int argc, char **argv) FatalError("AddScreen/ScreenInit failed for driver %d\n", i); } - DebugF("InitOutput - xf86Screens[%d]->pScreen = %p\n", - i, xf86Screens[i]->pScreen); - DebugF("xf86Screens[%d]->pScreen->CreateWindow = %p\n", - i, xf86Screens[i]->pScreen->CreateWindow); - if (PictureGetSubpixelOrder(xf86Screens[i]->pScreen) == SubPixelUnknown) { xf86MonPtr DDC = (xf86MonPtr) (xf86Screens[i]->monitor->DDC);