diff options
author | 2014-08-17 22:08:53 +0000 | |
---|---|---|
committer | 2014-08-17 22:08:53 +0000 | |
commit | 4ffbec5dda97acc801e425b741213d15668770ab (patch) | |
tree | 2ae2658e682d1c5782e487cbf2f3b570bac09940 | |
parent | While all current callers pass valid data to ascii_hspan() only, (diff) | |
download | wireguard-openbsd-4ffbec5dda97acc801e425b741213d15668770ab.tar.xz wireguard-openbsd-4ffbec5dda97acc801e425b741213d15668770ab.zip |
typo, sorry
-rw-r--r-- | usr.bin/mandoc/term_ascii.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/term_ascii.c b/usr.bin/mandoc/term_ascii.c index e112462d8d2..0ee4430a4da 100644 --- a/usr.bin/mandoc/term_ascii.c +++ b/usr.bin/mandoc/term_ascii.c @@ -1,4 +1,4 @@ -/* $Id: term_ascii.c,v 1.19 2014/08/17 22:06:49 schwarze Exp $ */ +/* $Id: term_ascii.c,v 1.20 2014/08/17 22:08:53 schwarze Exp $ */ /* * Copyright (c) 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2014 Ingo Schwarze <schwarze@openbsd.org> @@ -243,7 +243,7 @@ ascii_hspan(const struct termp *p, const struct roffsu *su) case SCALE_EM: r = su->scale; break; - case default: + default: abort(); /* NOTREACHED */ } |