From 41eef5e1aa64474c6bfd218ae1d679fb1af8584a Mon Sep 17 00:00:00 2001 From: Olaf Barthel Date: Mon, 10 Apr 2006 15:08:11 +0000 Subject: [PATCH] - Replaced an inappropriate "ULONG" with "unsigned long". git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@15096 87f5fb63-7c3d-0410-a384-fd976d0f7a62 --- library/include/sys/select.h | 4 ++-- library/socket_wait_select.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/library/include/sys/select.h b/library/include/sys/select.h index fce1535..3f9ac2c 100644 --- a/library/include/sys/select.h +++ b/library/include/sys/select.h @@ -1,5 +1,5 @@ /* - * $Id: select.h,v 1.8 2006-04-07 15:45:49 obarthel Exp $ + * $Id: select.h,v 1.9 2006-04-10 15:08:11 obarthel Exp $ * * :ts=4 * @@ -121,7 +121,7 @@ extern int select(int nfds, fd_set *readfds,fd_set *writefds, fd_set *errorfds,s function. */ #ifndef __NO_WAITSELECT -extern int waitselect(int num_fds,fd_set *read_fds,fd_set *write_fds,fd_set *except_fds,struct timeval *timeout,ULONG * signal_mask); +extern int waitselect(int num_fds,fd_set *read_fds,fd_set *write_fds,fd_set *except_fds,struct timeval *timeout,unsigned long * signal_mask); #endif /* __NO_WAITSELECT */ #endif /* __NO_NET_API */ diff --git a/library/socket_wait_select.c b/library/socket_wait_select.c index 9fc7357..cb6fc5d 100644 --- a/library/socket_wait_select.c +++ b/library/socket_wait_select.c @@ -1,5 +1,5 @@ /* - * $Id: socket_wait_select.c,v 1.2 2006-04-07 15:45:48 obarthel Exp $ + * $Id: socket_wait_select.c,v 1.3 2006-04-10 15:08:10 obarthel Exp $ * * :ts=4 * @@ -42,7 +42,7 @@ /****************************************************************************/ int -waitselect(int num_fds,fd_set *read_fds,fd_set *write_fds,fd_set *except_fds,struct timeval *timeout,ULONG * signal_mask) +waitselect(int num_fds,fd_set *read_fds,fd_set *write_fds,fd_set *except_fds,struct timeval *timeout,unsigned long * signal_mask) { int result;