From 9607bedb484c7cfb5dafd9a6a91e088d76d17663 Mon Sep 17 00:00:00 2001 From: Mark Jansen Date: Tue, 7 Feb 2017 10:32:20 +0000 Subject: [PATCH] [BOOTLIB] Additional EfiPrintf conversion like r73736 for MSVC 2013 svn path=/trunk/; revision=73743 --- reactos/boot/environ/lib/mm/i386/mmx86.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/reactos/boot/environ/lib/mm/i386/mmx86.c b/reactos/boot/environ/lib/mm/i386/mmx86.c index 4d36f981f6c..48632a92416 100644 --- a/reactos/boot/environ/lib/mm/i386/mmx86.c +++ b/reactos/boot/environ/lib/mm/i386/mmx86.c @@ -507,10 +507,8 @@ MmSelectMappingAddress ( } /* We don't support virtual memory yet @TODO */ -#ifdef _MSC_VER // Fuck gcc. - EfiPrintf(L"not yet implemented in " __FUNCTION__ "\r\n"); + EfiPrintf(L"not yet implemented in %S\r\n", __FUNCTION__); EfiStall(1000000); -#endif return STATUS_NOT_IMPLEMENTED; } -- 2.17.1