From: James S. <jsi...@us...> - 2002-03-25 20:14:50
|
Update of /cvsroot/linuxconsole/ruby/linux/drivers/char In directory usw-pr-cvs1:/tmp/cvs-serv15730 Modified Files: tty_io.c Log Message: Oops. Stupid mistake pointed out by Wartan. Thank you. Index: tty_io.c =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/drivers/char/tty_io.c,v retrieving revision 1.45 retrieving revision 1.46 diff -u -d -r1.45 -r1.46 --- tty_io.c 13 Mar 2002 23:48:37 -0000 1.45 +++ tty_io.c 25 Mar 2002 20:14:45 -0000 1.46 @@ -1481,7 +1481,7 @@ if (!memcmp(&tmp_ws, &tty->winsize, sizeof(*arg))) return 0; #ifdef CONFIG_VT - if (tty->driver.subtype = SYSTEM_TYPE_CONSOLE) { + if (tty->driver.subtype == SYSTEM_TYPE_CONSOLE) { struct vc_data *vc = (struct vc_data *) tty->driver_data; if (!vc || vc_resize(vc, tmp_ws.ws_col, tmp_ws.ws_row)) |