mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-11 09:50:12 +00:00
err() --> errx() for non-errno related failures.
This commit is contained in:
parent
cecf5fe996
commit
9074ba2eea
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=14539
@ -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");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user