summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2010-05-27 04:11:07 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2010-05-27 04:11:07 +0000
commite7583f67c6544b94b0f08dae510f137b1d8afc3a (patch)
treec2498653e41a562fcf923346741c4d9180494012 /cpukit/libnetworking
parent2010-05-27 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-e7583f67c6544b94b0f08dae510f137b1d8afc3a.tar.bz2
2010-05-27 Ralf Corsépius <ralf.corsepius@rtems.org>
* libnetworking/sys/socket.h (struct sockwakeup): Use void* instead of caddr_t.
Diffstat (limited to 'cpukit/libnetworking')
-rw-r--r--cpukit/libnetworking/sys/socket.h4
1 files changed, 2 insertions, 2 deletions
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;
};
/*