diff options
author | Thomas Adam <thomas@xteddy.org> | 2020-03-16 10:01:27 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2020-03-16 10:01:27 +0000 |
commit | 45be93f6044e9315e066c7ebd75bdd9c54a97498 (patch) | |
tree | 057597d17bae3227cebd6b752c21264455dee9c7 /window.c | |
parent | f584fe1b006abf42aebd0b25b2ee8d082202c778 (diff) | |
parent | 7cae4e8e89a98329843e3df8b3644f501288256b (diff) | |
download | rtmux-45be93f6044e9315e066c7ebd75bdd9c54a97498.tar.gz rtmux-45be93f6044e9315e066c7ebd75bdd9c54a97498.tar.bz2 rtmux-45be93f6044e9315e066c7ebd75bdd9c54a97498.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'window.c')
-rw-r--r-- | window.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -423,8 +423,8 @@ window_resize(struct window *w, u_int sx, u_int sy, int xpixel, int ypixel) ypixel = DEFAULT_YPIXEL; log_debug("%s: @%u resize %ux%u (%ux%u)", __func__, w->id, sx, sy, - xpixel == -1 ? w->xpixel : xpixel, - ypixel == -1 ? w->ypixel : ypixel); + xpixel == -1 ? w->xpixel : (u_int)xpixel, + ypixel == -1 ? w->ypixel : (u_int)ypixel); w->sx = sx; w->sy = sy; if (xpixel != -1) |