Update of /cvsroot/linuxconsole/ruby/ruby-2.6/fs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28602/ruby-2.6/fs
Modified Files:
compat_ioctl.c
Log Message:
missing semicolon
Index: compat_ioctl.c
===================================================================
RCS file: /cvsroot/linuxconsole/ruby/ruby-2.6/fs/compat_ioctl.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- compat_ioctl.c 25 May 2004 05:26:48 -0000 1.9
+++ compat_ioctl.c 31 May 2004 09:46:54 -0000 1.10
@@ -1719,7 +1719,8 @@
switch (cmd) {
case PIO_UNIMAP:
if (!perm) return -EPERM;
- return con_set_unimap(vc, tmp.entry_ct, compat_ptr(tmp.entries)) case GIO_UNIMAP:
+ return con_set_unimap(vc, tmp.entry_ct, compat_ptr(tmp.entries));
+ case GIO_UNIMAP:
return con_get_unimap(vc, tmp.entry_ct, &(user_ud->entry_ct), compat_ptr(tmp.entries));
}
return 0;
|