Commit 492be1b5 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

kernel32: Fix the number of characters passed to GetAtomNameW in test_local_get_atom_name.

parent d1825591
......@@ -566,7 +566,7 @@ static void test_local_get_atom_name(void)
do_initW(inW, "abcdefghij", 255);
atom = AddAtomW(inW);
ok(atom, "couldn't add atom for %s\n", in);
len = GetAtomNameW(atom, outW, sizeof(outW));
len = GetAtomNameW(atom, outW, sizeof(outW)/sizeof(outW[0]));
ok(len == 255, "length mismatch (%u instead of 255)\n", len);
for (i = 0; i < 255; i++)
{
......
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