Update of /cvsroot/linux-vax/kernel-2.5/fs/ods2
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10297
Modified Files:
inode.c
Log Message:
- Fix missing '='. I've yet to learn how/why gcc accepted that at all...
Index: inode.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/fs/ods2/inode.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- inode.c 20 Sep 2004 05:51:29 -0000 1.5
+++ inode.c 20 Sep 2004 06:10:46 -0000 1.6
@@ -34,7 +34,7 @@
};
struct file_operations ods2_file_operations = {
- .read ods2_read,
+ .read = ods2_read,
.llseek = ods2_llseek,
.open = ods2_open_release,
.release = ods2_open_release,
|