Commit 0a51a820 authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

oledb32/tests: Constify some character strings.

parent 43d05cc5
......@@ -2617,7 +2617,7 @@ static void test_converttodbdate(void)
{
DBLENGTH dst_len;
HRESULT hr;
static WCHAR strW[] = {'2','0','1','3','-','0','5','-','1','4',0};
static const WCHAR strW[] = {'2','0','1','3','-','0','5','-','1','4',0};
DBDATE ts = {2013, 5, 14};
DBDATE dst;
DBSTATUS dst_status;
......
......@@ -209,9 +209,9 @@ static void test_errorinfo(void)
static void test_initializationstring(void)
{
static WCHAR initstring_msdasql[] = {'P','r','o','v','i','d','e','r','=','M','S','D','A','S','Q','L','.','1',';',
static const WCHAR initstring_msdasql[] = {'P','r','o','v','i','d','e','r','=','M','S','D','A','S','Q','L','.','1',';',
'D','a','t','a',' ','S','o','u','r','c','e','=','d','u','m','m','y', 0};
static WCHAR initstring_sqloledb[] = {'P','r','o','v','i','d','e','r','=','S','Q','L','O','L','E','D','B','.','1',';',
static const WCHAR initstring_sqloledb[] = {'P','r','o','v','i','d','e','r','=','S','Q','L','O','L','E','D','B','.','1',';',
'D','a','t','a',' ','S','o','u','r','c','e','=','d','u','m','m','y', 0};
IDataInitialize *datainit = NULL;
IDBInitialize *dbinit = NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment