* approved by rth

2002-09-10  Frank Ch. Eigler  <fche@redhat.com>

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

From-SVN: r57002
This commit is contained in:
Frank Ch. Eigler 2002-09-10 12:21:34 +00:00
parent edf4d41e24
commit 0f37c5c023
1 changed files with 1 additions and 1 deletions

View 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;
}