From bd938bd98412ec9d0c24856be45110078f1ad1ae Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Sun, 10 Jan 2010 12:56:07 -0800 Subject: com32/lib: fix unused argument warning in fdopendir() fdopendir() is a stub, and probably will remain such. Signed-off-by: H. Peter Anvin --- com32/lib/fdopendir.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/com32/lib/fdopendir.c b/com32/lib/fdopendir.c index 5fe11617..4fc31388 100644 --- a/com32/lib/fdopendir.c +++ b/com32/lib/fdopendir.c @@ -8,6 +8,8 @@ DIR *fdopendir(int __fd) { + (void)__fd; + errno = ENOSYS; return NULL; } -- cgit v1.2.3