summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1996-05-09 16:12:34 +0000
committerRoland McGrath <roland@gnu.org>1996-05-09 16:12:34 +0000
commit94e952aac425beb54b731a59f0cc72d09ed9dbec (patch)
tree4c97b25c0bc2ac235d820054355552b9f4ec1b25
parentea0c807f3890a096b7e912ac5b89251f32f82170 (diff)
(diskfs_S_io_select): Removed TAG arg.
-rw-r--r--libdiskfs/io-select.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/libdiskfs/io-select.c b/libdiskfs/io-select.c
index 5cbd4615..07112f7b 100644
--- a/libdiskfs/io-select.c
+++ b/libdiskfs/io-select.c
@@ -1,5 +1,5 @@
-/*
- Copyright (C) 1994, 1995 Free Software Foundation, Inc.
+/*
+ Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
@@ -22,12 +22,11 @@
/* Implement io_select as described in <hurd/io.defs>. */
kern_return_t
diskfs_S_io_select (struct protid *cred,
- int *type,
- int *tag __attribute__ ((unused)))
+ int *type)
{
if (!cred)
return EOPNOTSUPP;
-
+
*type &= ~SELECT_URG;
return 0;
}