--- libaitio/src/aio.c 2012/03/29 01:31:33 1.4 +++ libaitio/src/aio.c 2012/05/14 12:49:21 1.5 @@ -3,7 +3,7 @@ * by Michael Pounov * * $Author: misho $ -* $Id: aio.c,v 1.4 2012/03/29 01:31:33 misho Exp $ +* $Id: aio.c,v 1.5 2012/05/14 12:49:21 misho Exp $ * ************************************************************************** The ELWIX and AITNET software is distributed under the following @@ -47,7 +47,7 @@ SUCH DAMAGE. /* - * io_rread() Raw VFS read function + * io_rread() - Raw VFS read function * * @fd = File handle * @buf = Read buffer @@ -66,7 +66,7 @@ io_rread(int fd, void * __restrict buf, size_t nbytes, #endif if (!buf) { - io_SetErr(EINVAL, "Error:: invalid arguments ...\n"); + io_SetErr(EINVAL, "Invalid arguments"); return -1; } if (!nbytes) @@ -124,7 +124,7 @@ io_rread(int fd, void * __restrict buf, size_t nbytes, } /* - * io_rwrite() Raw VFS write function + * io_rwrite() - Raw VFS write function * * @fd = File handle * @buf = Write buffer @@ -142,7 +142,7 @@ io_rwrite(int fd, void * __restrict buf, size_t nbytes #endif if (!buf) { - io_SetErr(EINVAL, "Error:: invalid arguments ...\n"); + io_SetErr(EINVAL, "Invalid arguments"); return -1; } if (!nbytes)