diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2019-12-03 10:47:24 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2019-12-03 10:47:24 +0000 |
commit | 3819d9ae9254e602da740cdefc1de34ef2b96b1a (patch) | |
tree | 686ff7060bfac3955a1cc419210933d7f26e63e2 /usr.bin/tmux/grid.c | |
parent | 26d017df926e26f246f9dc0c19cf20183a5d725f (diff) |
Style nits in function arguments.
Diffstat (limited to 'usr.bin/tmux/grid.c')
-rw-r--r-- | usr.bin/tmux/grid.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/grid.c b/usr.bin/tmux/grid.c index 3c6fa2e6ec6..3cebc7f42e9 100644 --- a/usr.bin/tmux/grid.c +++ b/usr.bin/tmux/grid.c @@ -1,4 +1,4 @@ -/* $OpenBSD: grid.c,v 1.100 2019/09/24 20:44:58 nicm Exp $ */ +/* $OpenBSD: grid.c,v 1.101 2019/12/03 10:47:22 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -204,7 +204,7 @@ grid_clear_cell(struct grid *gd, u_int px, u_int py, u_int bg) /* Check grid y position. */ static int -grid_check_y(struct grid *gd, const char* from, u_int py) +grid_check_y(struct grid *gd, const char *from, u_int py) { if (py >= gd->hsize + gd->sy) { log_debug("%s: y out of range: %u", from, py); |