advapi32/tests: Write-strings warnings fix.

This commit is contained in:
Andrew Talbot 2006-07-17 07:47:20 +01:00 committed by Alexandre Julliard
parent f01ae8ace9
commit 902b2a70a8
1 changed files with 3 additions and 3 deletions

View File

@ -314,10 +314,10 @@ static void test_SystemFunction005(void)
char output[0x40], result[0x40];
int r;
struct ustring in, key, out, res;
char *datastr = "twinkle twinkle little star";
char *keystr = "byolnim";
static char datastr[] = "twinkle twinkle little star";
static char keystr[] = "byolnim";
in.Buffer = (unsigned char *) datastr;
in.Buffer = (unsigned char *)datastr;
in.Length = strlen(datastr);
in.MaximumLength = 0;