diff options
author | 2015-11-13 12:18:52 +0000 | |
---|---|---|
committer | 2015-11-13 12:18:52 +0000 | |
commit | 06e9588131146486fff96171ec1b951d3899982c (patch) | |
tree | 48d4c84fd28a59724b885146c3bfb1e548f54ace | |
parent | Check for space on the ring before dequeuing packets. (diff) | |
download | wireguard-openbsd-06e9588131146486fff96171ec1b951d3899982c.tar.xz wireguard-openbsd-06e9588131146486fff96171ec1b951d3899982c.zip |
Two spacing and spelling nits.
-rw-r--r-- | usr.bin/tmux/format.c | 5 | ||||
-rw-r--r-- | usr.bin/tmux/grid-view.c | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/usr.bin/tmux/format.c b/usr.bin/tmux/format.c index 9b4839ec555..1571636cfef 100644 --- a/usr.bin/tmux/format.c +++ b/usr.bin/tmux/format.c @@ -1,4 +1,4 @@ -/* $OpenBSD: format.c,v 1.96 2015/11/13 10:00:26 nicm Exp $ */ +/* $OpenBSD: format.c,v 1.97 2015/11/13 12:18:52 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott <nicm@users.sourceforge.net> @@ -48,7 +48,8 @@ void format_cb_host_short(struct format_tree *, struct format_entry *); void format_cb_pid(struct format_tree *, struct format_entry *); void format_cb_session_alerts(struct format_tree *, struct format_entry *); void format_cb_window_layout(struct format_tree *, struct format_entry *); -void format_cb_window_visible_layout(struct format_tree *, struct format_entry *); +void format_cb_window_visible_layout(struct format_tree *, + struct format_entry *); void format_cb_start_command(struct format_tree *, struct format_entry *); void format_cb_current_command(struct format_tree *, struct format_entry *); void format_cb_history_bytes(struct format_tree *, struct format_entry *); diff --git a/usr.bin/tmux/grid-view.c b/usr.bin/tmux/grid-view.c index 86d1feba6bc..4500ead06ae 100644 --- a/usr.bin/tmux/grid-view.c +++ b/usr.bin/tmux/grid-view.c @@ -1,4 +1,4 @@ -/* $OpenBSD: grid-view.c,v 1.22 2015/11/13 08:09:28 nicm Exp $ */ +/* $OpenBSD: grid-view.c,v 1.23 2015/11/13 12:18:52 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net> @@ -30,7 +30,7 @@ #define grid_view_x(gd, x) (x) #define grid_view_y(gd, y) ((gd)->hsize + (y)) -/* Get cel. */ +/* Get cell. */ void grid_view_get_cell(struct grid *gd, u_int px, u_int py, struct grid_cell *gc) { |