aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorJoerg Wunsch <joerg@FreeBSD.org>1996-03-11 11:01:03 +0000
committerJoerg Wunsch <joerg@FreeBSD.org>1996-03-11 11:01:03 +0000
commit9074ba2eea88ec053a1fac524c1c10b10c20ec68 (patch)
tree65fab8049b6d1601df864ecbc2e1f23e51d88a75 /bin
parentcecf5fe9961525b16a55af2153e27f7a3f7f7191 (diff)
downloadsrc-9074ba2eea88ec053a1fac524c1c10b10c20ec68.tar.gz
src-9074ba2eea88ec053a1fac524c1c10b10c20ec68.zip
err() --> errx() for non-errno related failures.
Notes
Notes: svn path=/head/; revision=14539
Diffstat (limited to 'bin')
-rw-r--r--bin/test/test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/test/test.c b/bin/test/test.c
index b34fdb14aa65..896d8d0d646b 100644
--- a/bin/test/test.c
+++ b/bin/test/test.c
@@ -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");
}