mirror of
https://github.com/tmux/tmux.git
synced 2024-12-13 18:38:48 +00:00
These should be u_int.
This commit is contained in:
parent
ed6f44b01f
commit
0691217742
@ -1,4 +1,4 @@
|
||||
/* $Id: window-copy.c,v 1.40 2009-01-18 13:20:46 nicm Exp $ */
|
||||
/* $Id: window-copy.c,v 1.41 2009-01-18 15:40:19 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -424,7 +424,8 @@ window_copy_copy_line(
|
||||
struct window_pane *wp, char **buf, size_t *off, u_int sy, u_int sx, u_int ex)
|
||||
{
|
||||
const struct grid_cell *gc;
|
||||
u_char i, j, xx, data[4];
|
||||
u_int i, j, xx;
|
||||
u_char data[4];
|
||||
|
||||
if (sx > ex)
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user