[APITEST:USER32]

Fix problematic for() loops.
Patch by Victor Martinez Calvo, thanks :)
ROSTESTS-136 #resolve

svn path=/trunk/; revision=63133
This commit is contained in:
Hermès Bélusca-Maïto 2014-05-03 17:08:39 +00:00
parent 5e26b1988c
commit ea3f9d6c6e

View file

@ -217,9 +217,9 @@ static void cleanup_attachments()
int i,j;
BOOL ret;
for(i = 0; i< 4; i++);
for(i = 0; i< 4; i++)
{
for(j = 0; j< 4; j++);
for(j = 0; j< 4; j++)
{
ret = AttachThreadInput(data[i].tid,data[j].tid, FALSE);
ok(ret==0, "expected AttachThreadInput to fail\n");