Some style nits.

This commit is contained in:
Nicholas Marriott
2022-04-06 16:39:46 +01:00
parent 0c84a20d2f
commit 3a6d82b7c8
16 changed files with 20 additions and 20 deletions

View File

@ -1056,7 +1056,7 @@ window_pane_resize(struct window_pane *wp, u_int sx, u_int sy)
if (sx == wp->sx && sy == wp->sy)
return;
r = xmalloc (sizeof *r);
r = xmalloc(sizeof *r);
r->sx = sx;
r->sy = sy;
r->osx = wp->sx;