diff options
author | Philippe Charnier <charnier@FreeBSD.org> | 2002-04-12 21:25:16 +0000 |
---|---|---|
committer | Philippe Charnier <charnier@FreeBSD.org> | 2002-04-12 21:25:16 +0000 |
commit | 4ed27a6f0a0fbd79f9f095a877933c99bd044c37 (patch) | |
tree | bb5e97de27cc45f3e6040eaed371417e50e62072 | |
parent | 17de5908ce56795d68a42ab2fa3c193a613b748a (diff) | |
download | src-4ed27a6f0a0fbd79f9f095a877933c99bd044c37.tar.gz src-4ed27a6f0a0fbd79f9f095a877933c99bd044c37.zip |
Replace err() with errx(), errno is garbage in this context.
Notes
Notes:
svn path=/head/; revision=94558
-rw-r--r-- | usr.bin/find/operator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/find/operator.c b/usr.bin/find/operator.c index ce3925ab153d..c67abc0a2159 100644 --- a/usr.bin/find/operator.c +++ b/usr.bin/find/operator.c @@ -98,7 +98,7 @@ yankexpr(planp) if (node->execute == f_openparen) for (tail = subplan = NULL;;) { if ((next = yankexpr(planp)) == NULL) - err(1, "(: missing closing ')'"); + errx(1, "(: missing closing ')'"); /* * If we find a closing ')' we store the collected * subplan in our '(' node and convert the node to |