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

ntdll/tests: Avoid harcoding array lengths.

parent 9d6204b2
......@@ -1146,8 +1146,8 @@ static void test_wcsrchr(void)
static void test_wcslwrupr(void)
{
static WCHAR teststringW[] = {'a','b','r','a','c','a','d','a','b','r','a',0};
static WCHAR emptyW[1] = {0};
static const WCHAR constemptyW[1] = {0};
static WCHAR emptyW[] = {0};
static const WCHAR constemptyW[] = {0};
if (0) /* crashes on native */
{
......
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