diff options
author | 2020-05-25 15:02:25 +0000 | |
---|---|---|
committer | 2020-05-25 15:02:25 +0000 | |
commit | eba5d76964ed47ffaa50f589526ee25dc2a11061 (patch) | |
tree | f0f4943df079a25d28b208d143c8061a0b924322 /usr.bin/tmux/tmux.h | |
parent | Pass boothowto from bootblock to kernel (diff) | |
download | wireguard-openbsd-eba5d76964ed47ffaa50f589526ee25dc2a11061.tar.xz wireguard-openbsd-eba5d76964ed47ffaa50f589526ee25dc2a11061.zip |
Make some data types consistent.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index eca2e1c85dc..636cb64346f 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.1053 2020/05/25 09:32:10 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.1054 2020/05/25 15:02:25 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -673,7 +673,7 @@ struct grid_cell { /* Grid extended cell entry. */ struct grid_extd_entry { - uint32_t data; + u_int data; u_short attr; u_char flags; int fg; @@ -2889,9 +2889,9 @@ u_int session_group_attached_count(struct session_group *); void session_renumber_windows(struct session *); /* utf8.c */ -uint32_t utf8_set_big(char, u_int); -uint32_t utf8_map_big(const struct utf8_data *); -void utf8_get_big(uint32_t, struct utf8_data *); +u_int utf8_set_big(char, u_int); +u_int utf8_map_big(const struct utf8_data *); +void utf8_get_big(u_int, struct utf8_data *); void utf8_set(struct utf8_data *, u_char); void utf8_copy(struct utf8_data *, const struct utf8_data *); enum utf8_state utf8_open(struct utf8_data *, u_char); |