Commit 902b2a70 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

advapi32/tests: Write-strings warnings fix.

parent f01ae8ac
......@@ -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;
......
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