From 40768427f87401c43cd315109054b4cc9c06e6d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Wed, 25 Jan 2017 22:50:46 +0000 Subject: [PATCH] [FREELDR]: Fix GCCLin compilation (#if'd 0 an unused static function; I keep it there still in case it can become useful later). svn path=/trunk/; revision=73597 --- reactos/boot/freeldr/freeldr/arch/i386/i386bug.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/reactos/boot/freeldr/freeldr/arch/i386/i386bug.c b/reactos/boot/freeldr/freeldr/arch/i386/i386bug.c index aeed9adfb7d..0d4929b7b93 100644 --- a/reactos/boot/freeldr/freeldr/arch/i386/i386bug.c +++ b/reactos/boot/freeldr/freeldr/arch/i386/i386bug.c @@ -35,11 +35,13 @@ char *i386ExceptionDescriptionText[] = #define SCREEN_ATTR 0x1F // Bright white on blue background +#if 0 static void i386PrintChar(char chr, ULONG x, ULONG y) { MachVideoPutChar(chr, SCREEN_ATTR, x, y); } +#endif /* Used to store the current X and Y position on the screen */ ULONG i386_ScreenPosX = 0;