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

This commit is contained in:
Rob Shearman 2008-02-25 09:02:03 +00:00 committed by Alexandre Julliard
parent d182559161
commit 492be1b5e3
1 changed files with 1 additions and 1 deletions

View File

@ -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++)
{