aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tree.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2015-09-26 00:54:03 +0000
committerIngo Schwarze <schwarze@openbsd.org>2015-09-26 00:54:03 +0000
commit3e6a72ed7b563e04635c28fcb556c3203eb58f58 (patch)
tree0a71f4626b257d539e145aa3683d0038a0c195c3 /tree.c
parent41adc72e761bdad350233dd0d9a96b77cef27871 (diff)
downloadmandoc-3e6a72ed7b563e04635c28fcb556c3203eb58f58.tar.gz
mandoc-3e6a72ed7b563e04635c28fcb556c3203eb58f58.tar.zst
mandoc-3e6a72ed7b563e04635c28fcb556c3203eb58f58.zip
/* NOTREACHED */ after abort() is silly, delete it
Diffstat (limited to 'tree.c')
-rw-r--r--tree.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/tree.c b/tree.c
index 8673f45b..060594f4 100644
--- a/tree.c
+++ b/tree.c
@@ -1,4 +1,4 @@
-/* $Id: tree.c,v 1.66 2015/04/18 17:53:21 schwarze Exp $ */
+/* $Id: tree.c,v 1.67 2015/09/26 00:54:04 schwarze Exp $ */
/*
* Copyright (c) 2008, 2009, 2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2013, 2014, 2015 Ingo Schwarze <schwarze@openbsd.org>
@@ -98,7 +98,6 @@ print_mdoc(const struct roff_node *n, int indent)
break;
default:
abort();
- /* NOTREACHED */
}
switch (n->type) {
@@ -138,7 +137,6 @@ print_mdoc(const struct roff_node *n, int indent)
break;
default:
abort();
- /* NOTREACHED */
}
if (n->span) {
@@ -212,7 +210,6 @@ print_man(const struct roff_node *n, int indent)
break;
default:
abort();
- /* NOTREACHED */
}
switch (n->type) {
@@ -238,7 +235,6 @@ print_man(const struct roff_node *n, int indent)
break;
default:
abort();
- /* NOTREACHED */
}
if (n->span) {