Module: wine Branch: master Commit: 7eb681533640d70c718a11cbbf37aec142270137 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7eb681533640d70c718a11cbbf... Author: Andrew Talbot <Andrew.Talbot(a)talbotville.com> Date: Sat Dec 16 12:15:53 2006 +0000 version/tests: Write-strings warning fix. --- dlls/version/tests/info.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/version/tests/info.c b/dlls/version/tests/info.c index 5eafa49..3a5f2c0 100644 --- a/dlls/version/tests/info.c +++ b/dlls/version/tests/info.c @@ -233,7 +233,7 @@ static void test_info(void) { /* this test crashes on WinNT4 */ - boolret = VerQueryValueA( pVersionInfo, "\\", (LPVOID *)&pFixedVersionInfo, 0); + boolret = VerQueryValueA( pVersionInfo, backslash, (LPVOID *)&pFixedVersionInfo, 0); ok (boolret, "VerQueryValue failed: GetLastError = 0x%08x\n", GetLastError()); }