summaryrefslogtreecommitdiff
path: root/libdiskfs/file-getfh.c
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1995-06-09 20:49:35 +0000
committerMichael I. Bushnell <mib@gnu.org>1995-06-09 20:49:35 +0000
commit1af1aac33a39e6d7115083b94e02d01bf542221e (patch)
tree2aec95aaecfcecc507fcee12266494e1fb29c46e /libdiskfs/file-getfh.c
parent871376b140466abc20fb61ade2eef721bdc5745f (diff)
(diskfs_S_file_getfh): Declare parameters to be unused.
Diffstat (limited to 'libdiskfs/file-getfh.c')
-rw-r--r--libdiskfs/file-getfh.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libdiskfs/file-getfh.c b/libdiskfs/file-getfh.c
index 3e455143..bc788a20 100644
--- a/libdiskfs/file-getfh.c
+++ b/libdiskfs/file-getfh.c
@@ -1,5 +1,5 @@
/* libdiskfs implementation of fs.defs: file_getfh
- Copyright (C) 1992, 1993, 1994 Free Software Foundation
+ Copyright (C) 1992, 1993, 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
@@ -20,9 +20,9 @@
/* Implement file_getfh as described in <hurd/fs.defs>. */
kern_return_t
-diskfs_S_file_getfh (struct protid *cred,
- char **data,
- u_int *datalen)
+diskfs_S_file_getfh (struct protid *cred __attribute__ ((unused)),
+ char **data __attribute__ ((unused)),
+ u_int *datalen __attribute__ ((unused)))
{
return EOPNOTSUPP;
}