From 86275a897fed0d55c644dbbb01d95454816f472d Mon Sep 17 00:00:00 2001 From: Filip Navara Date: Thu, 26 Feb 2004 16:19:17 +0000 Subject: [PATCH] - Modified import library order to link to snprintf from MSVCRT and not NTDLL. The one in NTDLL doesn't support '%f' parsing and so it caused the "%f KB" texts in Explorer instead of real file size. svn path=/trunk/; revision=8401 --- reactos/lib/shlwapi/Makefile.ros-template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/lib/shlwapi/Makefile.ros-template b/reactos/lib/shlwapi/Makefile.ros-template index 50743c4bbfa..3ac99d3d78e 100644 --- a/reactos/lib/shlwapi/Makefile.ros-template +++ b/reactos/lib/shlwapi/Makefile.ros-template @@ -1,4 +1,4 @@ -# $Id: Makefile.ros-template,v 1.3 2004/02/19 21:19:27 gvg Exp $ +# $Id: Makefile.ros-template,v 1.4 2004/02/26 16:19:17 navaraf Exp $ TARGET_NAME = shlwapi @@ -7,7 +7,7 @@ TARGET_OBJECTS = @C_SRCS@ TARGET_CFLAGS = -D__REACTOS__ @EXTRADEFS@ # FIXME: we don't do delayed imports yet so oleaut32.a is listed explicitly -TARGET_SDKLIBS = @IMPORTS@ oleaut32.a libwine.a wine_uuid.a ntdll.a libwine_unicode.a +TARGET_SDKLIBS = @IMPORTS@ msvcrt.a oleaut32.a libwine.a wine_uuid.a libwine_unicode.a ntdll.a TARGET_NORC = yes