diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-06-09 21:33:56 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-06-09 21:33:56 +0000 |
commit | a1d543a27a527d27888dcb8860bf290f9b1a8dcb (patch) | |
tree | deaf7718f0b46bdfd9d84a904a50fafb70e1b165 /libdiskfs/io-stubs.c | |
parent | f12446a31ab5fc55cebff022eb03aa53c3c06a70 (diff) |
(diskfs_S_io_postnotify): Declare parms START and END unused.
Diffstat (limited to 'libdiskfs/io-stubs.c')
-rw-r--r-- | libdiskfs/io-stubs.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libdiskfs/io-stubs.c b/libdiskfs/io-stubs.c index 4f52f3c5..aa1e48b2 100644 --- a/libdiskfs/io-stubs.c +++ b/libdiskfs/io-stubs.c @@ -1,5 +1,5 @@ /* - Copyright (C) 1994 Free Software Foundation + Copyright (C) 1994, 1995 Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -47,7 +47,8 @@ diskfs_S_io_eofnotify (struct protid *cred) We don't use this feature. */ kern_return_t diskfs_S_io_postnotify (struct protid *cred, - vm_offset_t start, vm_offset_t end) + vm_offset_t start __attribute__ ((unused)), + vm_offset_t end __attribute__ ((unused))) { return cred ? 0 : EOPNOTSUPP; } |