From e7583f67c6544b94b0f08dae510f137b1d8afc3a Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Thu, 27 May 2010 04:11:07 +0000 Subject: [PATCH] =?UTF-8?q?2010-05-27=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * libnetworking/sys/socket.h (struct sockwakeup): Use void* instead of caddr_t. --- cpukit/ChangeLog | 2 ++ cpukit/libnetworking/sys/socket.h | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index 177925ef52..a08a87f8d9 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,5 +1,7 @@ 2010-05-27 Ralf Corsépius + * libnetworking/sys/socket.h (struct sockwakeup): + Use void* instead of caddr_t. * librpc/include/rpc/xdr.h: Cosmetics from freebsd. 2010-05-26 Ralf Corsépius diff --git a/cpukit/libnetworking/sys/socket.h b/cpukit/libnetworking/sys/socket.h index 45bb9151f3..0bc1dcdefa 100644 --- a/cpukit/libnetworking/sys/socket.h +++ b/cpukit/libnetworking/sys/socket.h @@ -123,8 +123,8 @@ struct linger { */ struct socket; struct sockwakeup { - void (*sw_pfn)(struct socket *, caddr_t); - caddr_t sw_arg; + void (*sw_pfn)(struct socket *, void *); + void *sw_arg; }; /*