shell32/tests: End the lines with CR+LF otherwise the profile APIs are unable to read them back on Win >= 2000.
This commit is contained in:
parent
95ddcc3bae
commit
789fb4c994
|
@ -347,15 +347,15 @@ static void doChild(int argc, char** argv)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
/* Arguments */
|
/* Arguments */
|
||||||
childPrintf(hFile, "[Arguments]\n");
|
childPrintf(hFile, "[Arguments]\r\n");
|
||||||
if (winetest_debug > 2)
|
if (winetest_debug > 2)
|
||||||
trace("argcA=%d\n", argc);
|
trace("argcA=%d\n", argc);
|
||||||
childPrintf(hFile, "argcA=%d\n", argc);
|
childPrintf(hFile, "argcA=%d\r\n", argc);
|
||||||
for (i = 0; i < argc; i++)
|
for (i = 0; i < argc; i++)
|
||||||
{
|
{
|
||||||
if (winetest_debug > 2)
|
if (winetest_debug > 2)
|
||||||
trace("argvA%d=%s\n", i, argv[i]);
|
trace("argvA%d=%s\n", i, argv[i]);
|
||||||
childPrintf(hFile, "argvA%d=%s\n", i, encodeA(argv[i]));
|
childPrintf(hFile, "argvA%d=%s\r\n", i, encodeA(argv[i]));
|
||||||
}
|
}
|
||||||
CloseHandle(hFile);
|
CloseHandle(hFile);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue