com32/lib: fix unused argument warning in fdopendir()
authorH. Peter Anvin <hpa@zytor.com>
Sun, 10 Jan 2010 20:56:07 +0000 (12:56 -0800)
committerH. Peter Anvin <hpa@zytor.com>
Sun, 10 Jan 2010 20:56:07 +0000 (12:56 -0800)
fdopendir() is a stub, and probably will remain such.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
com32/lib/fdopendir.c

index 5fe1161..4fc3138 100644 (file)
@@ -8,6 +8,8 @@
 
 DIR *fdopendir(int __fd)
 {
+    (void)__fd;
+
     errno = ENOSYS;
     return NULL;
 }