diff options
author | 2015-09-26 00:53:15 +0000 | |
---|---|---|
committer | 2015-09-26 00:53:15 +0000 | |
commit | 0639f12ae6c65fb8e982fd65cf572cfe6b77b7ec (patch) | |
tree | 45731efe4ad70703f2f476745264e1432aabf345 /usr.bin/mandoc/man_macro.c | |
parent | resolve code duplication and do style cleanup in mdoc_nm_pre(), (diff) | |
download | wireguard-openbsd-0639f12ae6c65fb8e982fd65cf572cfe6b77b7ec.tar.xz wireguard-openbsd-0639f12ae6c65fb8e982fd65cf572cfe6b77b7ec.zip |
/* NOTREACHED */ after abort() is silly, delete it
Diffstat (limited to 'usr.bin/mandoc/man_macro.c')
-rw-r--r-- | usr.bin/mandoc/man_macro.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/mandoc/man_macro.c b/usr.bin/mandoc/man_macro.c index d2af05db232..166c60023ae 100644 --- a/usr.bin/mandoc/man_macro.c +++ b/usr.bin/mandoc/man_macro.c @@ -1,4 +1,4 @@ -/* $OpenBSD: man_macro.c,v 1.72 2015/09/04 21:24:26 schwarze Exp $ */ +/* $OpenBSD: man_macro.c,v 1.73 2015/09/26 00:53:15 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2012, 2013, 2014, 2015 Ingo Schwarze <schwarze@openbsd.org> @@ -223,7 +223,6 @@ blk_close(MACRO_PROT_ARGS) break; default: abort(); - /* NOTREACHED */ } for (nn = man->last->parent; nn; nn = nn->parent) |