diff options
author | 2013-10-10 12:01:14 +0000 | |
---|---|---|
committer | 2013-10-10 12:01:14 +0000 | |
commit | f7b15bf9c48a26b5072e9cc2124318f75b11e60f (patch) | |
tree | 4be4c7077d007b119136428bac331b1ec3708f65 /usr.bin/tmux/grid.c | |
parent | Remove the barely-used and unnecessary command check() function. (diff) | |
download | wireguard-openbsd-f7b15bf9c48a26b5072e9cc2124318f75b11e60f.tar.xz wireguard-openbsd-f7b15bf9c48a26b5072e9cc2124318f75b11e60f.zip |
Trivial style and spacing nits.
Diffstat (limited to 'usr.bin/tmux/grid.c')
-rw-r--r-- | usr.bin/tmux/grid.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/usr.bin/tmux/grid.c b/usr.bin/tmux/grid.c index 9ff18cd1fa6..de76090f3b6 100644 --- a/usr.bin/tmux/grid.c +++ b/usr.bin/tmux/grid.c @@ -1,4 +1,4 @@ -/* $OpenBSD: grid.c,v 1.30 2013/10/10 11:49:29 nicm Exp $ */ +/* $OpenBSD: grid.c,v 1.31 2013/10/10 12:01:14 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net> @@ -268,8 +268,7 @@ grid_get_cell(struct grid *gd, u_int px, u_int py) /* Set cell at relative position. */ void -grid_set_cell( - struct grid *gd, u_int px, u_int py, const struct grid_cell *gc) +grid_set_cell(struct grid *gd, u_int px, u_int py, const struct grid_cell *gc) { if (grid_check_y(gd, py) != 0) return; @@ -657,8 +656,8 @@ grid_string_cells(struct grid *gd, u_int px, u_int py, u_int nx, * available. */ void -grid_duplicate_lines( - struct grid *dst, u_int dy, struct grid *src, u_int sy, u_int ny) +grid_duplicate_lines(struct grid *dst, u_int dy, struct grid *src, u_int sy, + u_int ny) { struct grid_line *dstl, *srcl; u_int yy; |