Pointer type correction in term_clrsb().
authorjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Sat, 18 Feb 2006 22:30:10 +0000 (22:30 +0000)
committerjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Sat, 18 Feb 2006 22:30:10 +0000 (22:30 +0000)
(Harmless, as it happens.)

git-svn-id: svn://svn.tartarus.org/sgt/putty@6568 cda61777-01e9-0310-a592-d414129be87e

terminal.c

index 117ac74..906f252 100644 (file)
@@ -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 */