=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/window.c,v retrieving revision 1.248 retrieving revision 1.249 diff -c -r1.248 -r1.249 *** src/usr.bin/tmux/window.c 2020/02/14 13:57:58 1.248 --- src/usr.bin/tmux/window.c 2020/03/16 08:23:24 1.249 *************** *** 1,4 **** ! /* $OpenBSD: window.c,v 1.248 2020/02/14 13:57:58 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: window.c,v 1.249 2020/03/16 08:23:24 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 425,432 **** 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); w->sx = sx; w->sy = sy; if (xpixel != -1) --- 425,432 ---- ypixel = DEFAULT_YPIXEL; log_debug("%s: @%u resize %ux%u (%ux%u)", __func__, w->id, sx, sy, ! xpixel == -1 ? w->xpixel : (u_int)xpixel, ! ypixel == -1 ? w->ypixel : (u_int)ypixel); w->sx = sx; w->sy = sy; if (xpixel != -1)