Update of /cvsroot/linuxconsole/ruby/linux/drivers/video/tdfx
In directory usw-pr-cvs1:/tmp/cvs-serv5113/drivers/video/tdfx
Modified Files:
3dfxfb.c
Log Message:
Synced to 2.5.0. Don't use. The default 2.5.0 has a nasty bug in it.
Index: 3dfxfb.c
===================================================================
RCS file: /cvsroot/linuxconsole/ruby/linux/drivers/video/tdfx/3dfxfb.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- 3dfxfb.c 2001/10/15 01:13:17 1.14
+++ 3dfxfb.c 2001/12/26 17:28:12 1.15
@@ -1254,7 +1254,7 @@
if(!options || !*options)
return;
- while((this_opt = strsep(&options, ","))) {
+ while ((this_opt = strsep(&options, ",")) != NULL) {
if(!*this_opt)
continue;
if(!strcmp(this_opt, "inverse")) {
|