From 508a60842de39f4433118de83afb8bcd7ffc423e Mon Sep 17 00:00:00 2001 From: simon Date: Fri, 24 Nov 2000 22:27:51 +0000 Subject: [PATCH] Correct pointer types in new clipme function git-svn-id: svn://svn.tartarus.org/sgt/putty@812 cda61777-01e9-0310-a592-d414129be87e --- terminal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminal.c b/terminal.c index 116d6974..96472d31 100644 --- a/terminal.c +++ b/terminal.c @@ -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 */ -- 2.11.0