err() --> errx() for non-errno related failures.

This commit is contained in:
Joerg Wunsch 1996-03-11 11:01:03 +00:00
parent cecf5fe996
commit 9074ba2eea
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=14539

View file

@ -33,7 +33,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: test.c,v 1.11 1995/05/30 00:07:29 rgrimes Exp $
* $Id: test.c,v 1.12 1995/10/28 11:54:42 ache Exp $
*/
#ifndef lint
@ -578,12 +578,12 @@ static void
syntax()
{
err(2, "syntax error");
errx(2, "syntax error");
}
static void
overflow()
{
err(2, "expression is too complex");
errx(2, "expression is too complex");
}