aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksandr Rybalko <ray@FreeBSD.org>2014-02-06 13:28:06 +0000
committerAleksandr Rybalko <ray@FreeBSD.org>2014-02-06 13:28:06 +0000
commit0205ddeb44c1561d467a6afd411aa4f0f23a5f93 (patch)
treec71f17f062f2de5be1062ef4fc23e4665ccdcd0c
parent76c1988620291f7b3887b02a4f437bbf2715393e (diff)
downloadsrc-0205ddeb44c1561d467a6afd411aa4f0f23a5f93.tar.gz
src-0205ddeb44c1561d467a6afd411aa4f0f23a5f93.zip
Fix typo.
Pointed by: Ronald Klop Pointy hat: ray Sponsored by: The FreeBSD Foundation
Notes
Notes: svn path=/head/; revision=261551
-rw-r--r--sys/teken/teken.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/teken/teken.c b/sys/teken/teken.c
index 0613255f4388..3002a88c882f 100644
--- a/sys/teken/teken.c
+++ b/sys/teken/teken.c
@@ -339,7 +339,7 @@ teken_get_winsize(teken_t *t)
}
static void
-taken_trim_cursor_pos(teken_t *t, const teken_pos_t *new)
+teken_trim_cursor_pos(teken_t *t, const teken_pos_t *new)
{
const teken_pos_t *cur;
@@ -357,7 +357,7 @@ void
teken_set_winsize(teken_t *t, const teken_pos_t *p)
{
- taken_trim_cursor_pos(t, p);
+ teken_trim_cursor_pos(t, p);
t->t_winsize = *p;
teken_subr_do_reset(t);
}
@@ -366,7 +366,7 @@ void
teken_set_winsize_noreset(teken_t *t, const teken_pos_t *p)
{
- taken_trim_cursor_pos(t, p);
+ teken_trim_cursor_pos(t, p);
t->t_winsize = *p;
teken_subr_do_resize(t);
}