Update of /cvsroot/libsysio/libsysio/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4186/src
Modified Files:
Tag: LLNL_HPSS
ioctl.c
Log Message:
POSIX defines the ioctl request to be of type `int' and not `unsigned long int'
as we had it. Fixed.
Index: ioctl.c
===================================================================
RCS file: /cvsroot/libsysio/libsysio/src/ioctl.c,v
retrieving revision 1.12
retrieving revision 1.12.6.1
diff -u -w -b -B -p -r1.12 -r1.12.6.1
--- ioctl.c 21 Sep 2004 16:18:31 -0000 1.12
+++ ioctl.c 6 Sep 2005 14:35:32 -0000 1.12.6.1
@@ -54,7 +54,7 @@
#include "sysio-symbols.h"
int
-SYSIO_INTERFACE_NAME(ioctl)(int fd, unsigned long request, ...)
+SYSIO_INTERFACE_NAME(ioctl)(int fd, int request, ...)
{
int err;
struct file *fil;
|