=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/cmd-resize-pane.c,v retrieving revision 1.50 retrieving revision 1.51 diff -c -r1.50 -r1.51 *** src/usr.bin/tmux/cmd-resize-pane.c 2021/08/21 10:22:39 1.50 --- src/usr.bin/tmux/cmd-resize-pane.c 2021/08/21 10:28:05 1.51 *************** *** 1,4 **** ! /* $OpenBSD: cmd-resize-pane.c,v 1.50 2021/08/21 10:22:39 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: cmd-resize-pane.c,v 1.51 2021/08/21 10:28:05 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott *************** *** 98,105 **** if (args_count(args) == 0) adjust = 1; else { ! adjust = strtonum(args_string(args, 0), 1, INT_MAX, ! &errstr); if (errstr != NULL) { cmdq_error(item, "adjustment %s", errstr); return (CMD_RETURN_ERROR); --- 98,104 ---- if (args_count(args) == 0) adjust = 1; else { ! adjust = strtonum(args_string(args, 0), 1, INT_MAX, &errstr); if (errstr != NULL) { cmdq_error(item, "adjustment %s", errstr); return (CMD_RETURN_ERROR);