Update of /cvsroot/linuxconsole/ruby/linux/drivers/video/aty
In directory usw-pr-cvs1:/tmp/cvs-serv18029
Modified Files:
atyfb_base.c
Log Message:
Removed missed strsep change. I need to port this over but my Mach 64 card is nto supported :-(
Index: atyfb_base.c
===================================================================
RCS file: /cvsroot/linuxconsole/ruby/linux/drivers/video/aty/atyfb_base.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- atyfb_base.c 2001/11/22 12:56:49 1.9
+++ atyfb_base.c 2001/11/23 01:28:18 1.10
@@ -2494,7 +2494,7 @@
if (!options || !*options)
return 0;
- while (this_opt = strsep(&options, ",")) {
+ while ((this_opt = strsep(&options, ",")) != NULL) {
if (!strncmp(this_opt, "font:", 5)) {
char *p;
int i;
|