summaryrefslogtreecommitdiff
path: root/sys/dev/syscons
diff options
context:
space:
mode:
authorEd Schouten <ed@FreeBSD.org>2009-01-01 23:22:01 +0000
committerEd Schouten <ed@FreeBSD.org>2009-01-01 23:22:01 +0000
commitbfe36bb4622c188a41f57e6511fba49bf27285bd (patch)
tree60f6a1a54801a78ee9c508a01c9660ce3acdd251 /sys/dev/syscons
parentb523ec24b9075cc9ba62b108c77b80d08ad66496 (diff)
Notes
Diffstat (limited to 'sys/dev/syscons')
-rw-r--r--sys/dev/syscons/teken/teken_subr.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/dev/syscons/teken/teken_subr.h b/sys/dev/syscons/teken/teken_subr.h
index de79cfaf3b29..53aea0aa476c 100644
--- a/sys/dev/syscons/teken/teken_subr.h
+++ b/sys/dev/syscons/teken/teken_subr.h
@@ -256,7 +256,6 @@ static void
teken_subr_cursor_down(teken_t *t, unsigned int nrows)
{
- teken_assert(t->t_cursor.tp_row < t->t_scrollreg.ts_end);
if (t->t_cursor.tp_row + nrows >= t->t_scrollreg.ts_end)
t->t_cursor.tp_row = t->t_scrollreg.ts_end - 1;
else