advapi32/tests: Constify some character strings.

oldstable
Frédéric Delanoy 2013-12-19 22:25:15 +01:00 committed by Alexandre Julliard
parent 120dac41a1
commit 3e9b7b5992
2 changed files with 3 additions and 3 deletions

View File

@ -563,8 +563,8 @@ static void test_CredMarshalCredentialA(void)
static void test_CredUnmarshalCredentialA(void)
{
static WCHAR tW[] = {'t',0};
static WCHAR testW[] = {'t','e','s','t',0};
static const WCHAR tW[] = {'t',0};
static const WCHAR testW[] = {'t','e','s','t',0};
CERT_CREDENTIAL_INFO *cert;
USERNAME_TARGET_CREDENTIAL_INFO *username;
CRED_MARSHAL_TYPE type;

View File

@ -1665,7 +1665,7 @@ static void test_rw_order(void)
{
HKEY hKey;
DWORD dw = 0;
static char keyname[] = "test_rw_order";
static const char keyname[] = "test_rw_order";
char value_buf[2];
DWORD values, value_len, value_name_max_len;
LSTATUS ret;