1
0
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:
Simon Tatham 2000-11-24 22:27:51 +00:00
parent 9147f68fb6
commit d75f3687fb

View File

@ -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 */