aboutsummaryrefslogtreecommitdiff
path: root/grid.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2013-08-21 18:35:01 +0100
committerNicholas Marriott <nicholas.marriott@gmail.com>2013-08-21 18:35:01 +0100
commitf2675cdf04f9b01d86ce98df620c91393fbb8db4 (patch)
treefa261ca77ae7764364820fa2f56abb29bda7a55b /grid.c
parente3864c383f2678b0391a897cdccab7ad3bb98232 (diff)
downloadrtmux-f2675cdf04f9b01d86ce98df620c91393fbb8db4.tar.gz
rtmux-f2675cdf04f9b01d86ce98df620c91393fbb8db4.tar.bz2
rtmux-f2675cdf04f9b01d86ce98df620c91393fbb8db4.zip
Trivial style and spacing nits.
Diffstat (limited to 'grid.c')
-rw-r--r--grid.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/grid.c b/grid.c
index 5cc6c149..9e800243 100644
--- a/grid.c
+++ b/grid.c
@@ -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;