summaryrefslogtreecommitdiffstats
path: root/usr.bin/tsort
diff options
context:
space:
mode:
authorbillf <billf@FreeBSD.org>1999-07-04 17:26:16 +0000
committerbillf <billf@FreeBSD.org>1999-07-04 17:26:16 +0000
commit4822432874e997891c75df8d30dcab4c52d1a9fa (patch)
tree6a75551fe39c6d09c4b5991bbb0a4f3d685835fe /usr.bin/tsort
parent7c7c72da3801ba6f43e728ff5145b4988674abeb (diff)
downloadFreeBSD-src-4822432874e997891c75df8d30dcab4c52d1a9fa.zip
FreeBSD-src-4822432874e997891c75df8d30dcab4c52d1a9fa.tar.gz
Clean up some ambiguous nested if/elses.
Diffstat (limited to 'usr.bin/tsort')
-rw-r--r--usr.bin/tsort/tsort.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/tsort/tsort.c b/usr.bin/tsort/tsort.c
index 591ad16..fca46e9 100644
--- a/usr.bin/tsort/tsort.c
+++ b/usr.bin/tsort/tsort.c
@@ -33,7 +33,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: tsort.c,v 1.7 1997/03/11 14:48:14 peter Exp $
+ * $Id: tsort.c,v 1.8 1997/03/29 04:33:15 imp Exp $
*/
#ifndef lint
@@ -340,7 +340,7 @@ tsort()
err(1, NULL);
}
for (n = graph; n != NULL; n = n->n_next)
- if (!(n->n_flags & NF_ACYCLIC))
+ if (!(n->n_flags & NF_ACYCLIC)) {
if ((cnt = find_cycle(n, n, 0, 0))) {
if (!quiet) {
warnx("cycle in data");
@@ -356,6 +356,7 @@ tsort()
n->n_flags |= NF_ACYCLIC;
clear_cycle();
}
+ }
if (n == NULL)
errx(1, "internal error -- could not find cycle");
OpenPOWER on IntegriCloud