diff options
author | nicm <nicm> | 2013-10-10 12:01:14 +0000 |
---|---|---|
committer | nicm <nicm> | 2013-10-10 12:01:14 +0000 |
commit | 1b7c2dd056f4e41f0cec38c1b8ed5531f7281e33 (patch) | |
tree | 765753082b2d79ddc5e521bb84987c5193c0f02f /grid.c | |
parent | d45c12b6c9405da549197c2852ac124fc0d5b340 (diff) | |
download | rtmux-1b7c2dd056f4e41f0cec38c1b8ed5531f7281e33.tar.gz rtmux-1b7c2dd056f4e41f0cec38c1b8ed5531f7281e33.tar.bz2 rtmux-1b7c2dd056f4e41f0cec38c1b8ed5531f7281e33.zip |
Trivial style and spacing nits.
Diffstat (limited to 'grid.c')
-rw-r--r-- | grid.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -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; |