mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-04-10 23:58:06 -05:00
Correct pointer types in new clipme function
[originally from svn r812]
This commit is contained in:
parent
9147f68fb6
commit
d75f3687fb
@ -1917,7 +1917,7 @@ void term_scroll (int rel, int where) {
|
||||
term_update();
|
||||
}
|
||||
|
||||
static void clipme(long *top, long *bottom, char *workbuf) {
|
||||
static void clipme(unsigned long *top, unsigned long *bottom, char *workbuf) {
|
||||
char *wbptr; /* where next char goes within workbuf */
|
||||
int wblen = 0; /* workbuf len */
|
||||
int buflen; /* amount of memory allocated to workbuf */
|
||||
|
Loading…
x
Reference in New Issue
Block a user