From 7192476f7a9640986f9338f6ece9f0eec6ee8766 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Fri, 8 Dec 2006 07:18:27 +0000 Subject: Use size_t instead of uint32_t for read/write count-args. --- cpukit/libcsupport/src/read.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/libcsupport/src/read.c') diff --git a/cpukit/libcsupport/src/read.c b/cpukit/libcsupport/src/read.c index a57426666c..46f731e479 100644 --- a/cpukit/libcsupport/src/read.c +++ b/cpukit/libcsupport/src/read.c @@ -24,7 +24,7 @@ ssize_t read( size_t count ) { - int rc; /* XXX change to a size_t when prototype is fixed */ + ssize_t rc; rtems_libio_t *iop; rtems_libio_check_fd( fd ); @@ -59,7 +59,7 @@ ssize_t read( #include -_ssize_t _read_r( +ssize_t _read_r( struct _reent *ptr, int fd, void *buf, -- cgit v1.2.3