Fix typo.

From-SVN: r28026
This commit is contained in:
Catherine Moore 1999-07-08 17:10:58 +00:00 committed by Catherine Moore
parent d49d43f01e
commit 6ccecb3615
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
1999-07-08 Catherine Moore <clm@cygnus.com>
* gcc.c-torture/execute/920501-5.c: Fix typo. Change | to ||.
1999-07-05 Manfred Hollstein <mhollstein@cygnus.com>
* gcc.dg/990703-1.c (y): Terminate definition syntactically correctly.

View File

@ -10,7 +10,7 @@ x (int i)
}
main ()
{
if (x (0) != 2 || x (1) != 3 | x (2) != 5)
if (x (0) != 2 || x (1) != 3 || x (2) != 5)
abort();
exit(0);
}