Fix return value.
authorChristoph Mallon <christoph.mallon@gmx.de>
Thu, 11 Sep 2008 13:42:59 +0000 (13:42 +0000)
committerChristoph Mallon <christoph.mallon@gmx.de>
Thu, 11 Sep 2008 13:42:59 +0000 (13:42 +0000)
[r21853]

ir/be/test/fehler152.c

index a74c01b..4f5e991 100644 (file)
@@ -15,7 +15,7 @@ void handler(int sig)
 {
        printf(x == 3 ? "ok\n" : "fail");
        fflush(stdout);
-       exit(x == 3);
+       exit(x != 3);
 }
 
 int main(int argc, char *argv[]) {