summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/create_module.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-01-04 00:43:37 +0000
committerMike Frysinger <vapier@gentoo.org>2006-01-04 00:43:37 +0000
commitf9ff85a50a2fd0041289fdcb07f701f157b0d295 (patch)
tree9190f3c646396365bda0734c4ae593ec44ac2289 /libc/sysdeps/linux/common/create_module.c
parentbfc0df1617becca4888799853eae8beab6ccae5a (diff)
kill off some unused warnings
Diffstat (limited to 'libc/sysdeps/linux/common/create_module.c')
-rw-r--r--libc/sysdeps/linux/common/create_module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/create_module.c b/libc/sysdeps/linux/common/create_module.c
index a54f13be5..5a604d0dc 100644
--- a/libc/sysdeps/linux/common/create_module.c
+++ b/libc/sysdeps/linux/common/create_module.c
@@ -65,7 +65,7 @@ _syscall2(unsigned long, create_module, const char *, name, size_t, size);
#endif
#else /* !__NR_create_module */
-caddr_t create_module(const char *name, size_t size)
+caddr_t create_module(const char *name attribute_unused, size_t size attribute_unused)
{
__set_errno(ENOSYS);
return (caddr_t)-1;