From 909e8a4ef0a4b9bf3ca146bbb371c35d0adb60fc Mon Sep 17 00:00:00 2001 From: Christoph von Wittich Date: Tue, 15 Jan 2008 14:13:40 +0000 Subject: [PATCH] don't use double '%' in the string svn path=/trunk/; revision=31808 --- reactos/dll/win32/setupapi/install.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/win32/setupapi/install.c b/reactos/dll/win32/setupapi/install.c index 2ddbd63a07e..e0b2d2d5f52 100644 --- a/reactos/dll/win32/setupapi/install.c +++ b/reactos/dll/win32/setupapi/install.c @@ -1654,7 +1654,7 @@ static VOID FixupServiceBinaryPath( wcslen(L"%SystemRoot%\\") = 13*sizeof(wchar_t) */ Buffer = MyMalloc(Win32Length); - wcscpy(Buffer, L"%%SystemRoot%%\\"); + wcscpy(Buffer, L"%SystemRoot%\\"); wcscat(Buffer, *ServiceBinary); MyFree(*ServiceBinary);