From: James S. <jsi...@us...> - 2002-02-28 00:01:00
|
Update of /cvsroot/linuxconsole/ruby/linux/drivers/char In directory usw-pr-cvs1:/tmp/cvs-serv14425 Modified Files: decvte.c Log Message: Missing a break. Index: decvte.c =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/drivers/char/decvte.c,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- decvte.c 20 Feb 2002 17:49:34 -0000 1.18 +++ decvte.c 28 Feb 2002 00:00:58 -0000 1.19 @@ -205,8 +205,8 @@ */ void vte_ed(struct vc_data *vc, int vpar) { - unsigned int count; - unsigned short * start; + unsigned short *start; + unsigned int count; switch (vpar) { case 0: /* erase from cursor to end of display */ @@ -1909,6 +1909,7 @@ switch (c) { case '0': /* DEC Special graphics */ G0_charset = GRAF_MAP; + break; #if 0 case '>': /* DEC Technical */ G0_charset = DEC_TECH_MAP; |