From 9a9a84cfc8941c3f5b5c23cbac1ebb2c33c26328 Mon Sep 17 00:00:00 2001 From: jacob Date: Sat, 18 Feb 2006 22:30:10 +0000 Subject: [PATCH] Pointer type correction in term_clrsb(). (Harmless, as it happens.) git-svn-id: svn://svn.tartarus.org/sgt/putty@6568 cda61777-01e9-0310-a592-d414129be87e --- terminal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminal.c b/terminal.c index 117ac74d..906f2526 100644 --- a/terminal.c +++ b/terminal.c @@ -1384,7 +1384,7 @@ void term_reconfig(Terminal *term, Config *cfg) */ void term_clrsb(Terminal *term) { - termline *line; + unsigned char *line; term->disptop = 0; while ((line = delpos234(term->scrollback, 0)) != NULL) { sfree(line); /* this is compressed data, not a termline */ -- 2.11.0