Author: hbelusca Date: Wed Jan 25 22:50:46 2017 New Revision: 73597
URL: http://svn.reactos.org/svn/reactos?rev=73597&view=rev Log: [FREELDR]: Fix GCCLin compilation (#if'd 0 an unused static function; I keep it there still in case it can become useful later).
Modified: trunk/reactos/boot/freeldr/freeldr/arch/i386/i386bug.c
Modified: trunk/reactos/boot/freeldr/freeldr/arch/i386/i386bug.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/arch/i... ============================================================================== --- trunk/reactos/boot/freeldr/freeldr/arch/i386/i386bug.c [iso-8859-1] (original) +++ trunk/reactos/boot/freeldr/freeldr/arch/i386/i386bug.c [iso-8859-1] Wed Jan 25 22:50:46 2017 @@ -35,11 +35,13 @@
#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;