diff options
author | 2019-03-12 18:30:08 +0000 | |
---|---|---|
committer | 2019-03-12 18:30:08 +0000 | |
commit | c15b234755bc9673a08da681c7f5c8fb7e6ffcff (patch) | |
tree | 9297c2f6468033ff710d204e7b3b095259ba83c1 /usr.bin/tmux/tmux.h | |
parent | Tidy up a lot of &ictx->ctx by using a local variable. (diff) | |
download | wireguard-openbsd-c15b234755bc9673a08da681c7f5c8fb7e6ffcff.tar.xz wireguard-openbsd-c15b234755bc9673a08da681c7f5c8fb7e6ffcff.zip |
Fix HPA in origin mode.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 0428bceeec5..dbd67314b37 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.859 2019/03/12 13:56:30 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.860 2019/03/12 18:30:08 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -2100,7 +2100,7 @@ void screen_write_deleteline(struct screen_write_ctx *, u_int, u_int); void screen_write_clearline(struct screen_write_ctx *, u_int); void screen_write_clearendofline(struct screen_write_ctx *, u_int); void screen_write_clearstartofline(struct screen_write_ctx *, u_int); -void screen_write_cursormove(struct screen_write_ctx *, u_int, u_int); +void screen_write_cursormove(struct screen_write_ctx *, int, int); void screen_write_reverseindex(struct screen_write_ctx *, u_int); void screen_write_scrollregion(struct screen_write_ctx *, u_int, u_int); void screen_write_linefeed(struct screen_write_ctx *, int, u_int); |