Author: cwittich
Date: Tue Jan 15 17:13:40 2008
New Revision: 31808
URL:
http://svn.reactos.org/svn/reactos?rev=31808&view=rev
Log:
don't use double '%' in the string
Modified:
trunk/reactos/dll/win32/setupapi/install.c
Modified: trunk/reactos/dll/win32/setupapi/install.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/install…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/install.c (original)
+++ trunk/reactos/dll/win32/setupapi/install.c Tue Jan 15 17:13:40 2008
@@ -1654,7 +1654,7 @@
wcslen(L"%SystemRoot%\\") = 13*sizeof(wchar_t) */
Buffer = MyMalloc(Win32Length);
- wcscpy(Buffer, L"%%SystemRoot%%\\");
+ wcscpy(Buffer, L"%SystemRoot%\\");
wcscat(Buffer, *ServiceBinary);
MyFree(*ServiceBinary);