shlwapi/tests: Fixed the wide-character strings.

This commit is contained in:
Reece Dunn 2008-04-03 00:13:28 +01:00 committed by Alexandre Julliard
parent 722b659064
commit 33f788f7cb
1 changed files with 2 additions and 2 deletions

View File

@ -285,7 +285,7 @@ static void test_SHCreateStreamOnFileW(DWORD mode)
IStream * stream;
HRESULT ret;
ULONG refcount;
static const WCHAR test_file[] = { 'c', ':', '\\', 't', 'e', 's', 't', '.', 't', 'x', 't' };
static const WCHAR test_file[] = { 'c', ':', '\\', 't', 'e', 's', 't', '.', 't', 'x', 't', '\0' };
trace("SHCreateStreamOnFileW: testing mode %d\n", mode);
@ -382,7 +382,7 @@ static void test_SHCreateStreamOnFileEx(DWORD mode, DWORD stgm)
IStream * template = NULL;
HRESULT ret;
ULONG refcount;
static const WCHAR test_file[] = { 'c', ':', '\\', 't', 'e', 's', 't', '.', 't', 'x', 't' };
static const WCHAR test_file[] = { 'c', ':', '\\', 't', 'e', 's', 't', '.', 't', 'x', 't', '\0' };
trace("SHCreateStreamOnFileEx: testing mode %d, STGM flags %08x\n", mode, stgm);