From ea3f9d6c6eaaacde528c08a7cb66e36f8a7d773e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Sat, 3 May 2014 17:08:39 +0000 Subject: [PATCH] [APITEST:USER32] Fix problematic for() loops. Patch by Victor Martinez Calvo, thanks :) ROSTESTS-136 #resolve svn path=/trunk/; revision=63133 --- rostests/apitests/user32/AttachThreadInput.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rostests/apitests/user32/AttachThreadInput.c b/rostests/apitests/user32/AttachThreadInput.c index 979851f7d94..8f77b4de721 100644 --- a/rostests/apitests/user32/AttachThreadInput.c +++ b/rostests/apitests/user32/AttachThreadInput.c @@ -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");