mirror of
https://github.com/reactos/reactos.git
synced 2026-07-06 20:54:28 +08:00
[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:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user