* approved by rth
authorFrank Ch. Eigler <fche@gcc.gnu.org>
Tue, 10 Sep 2002 12:21:34 +0000 (12:21 +0000)
committerFrank Ch. Eigler <fche@gcc.gnu.org>
Tue, 10 Sep 2002 12:21:34 +0000 (12:21 +0000)
2002-09-10  Frank Ch. Eigler  <fche@redhat.com>

* gcc.c-torture/execute/20010915-1.c: Correct typo in abort call.

From-SVN: r57002

gcc/testsuite/gcc.c-torture/execute/20010915-1.c

index 56155659f5b8781b105f5a107ae16cb875e2030d..5a04bf58f10caba75961d55d4892c21fdc7d81ef 100644 (file)
@@ -53,7 +53,7 @@ char *m (char *x) { abort (); }
 char *s (char *v, char **pp)
 {
   if (strcmp (v, "a") != 0 || check++ > 1)
-    abort;
+    abort ();
   *pp = v+1;
   return 0;
 }