Diff for /libaitio/src/aio.c between versions 1.4.2.1 and 1.4.2.2

version 1.4.2.1, 2012/04/02 09:10:30 version 1.4.2.2, 2012/05/14 12:48:21
Line 66  io_rread(int fd, void * __restrict buf, size_t nbytes, Line 66  io_rread(int fd, void * __restrict buf, size_t nbytes,
 #endif  #endif
   
         if (!buf) {          if (!buf) {
                io_SetErr(EINVAL, "Error:: invalid arguments ...\n");                io_SetErr(EINVAL, "Invalid arguments");
                 return -1;                  return -1;
         }          }
         if (!nbytes)          if (!nbytes)
Line 142  io_rwrite(int fd, void * __restrict buf, size_t nbytes Line 142  io_rwrite(int fd, void * __restrict buf, size_t nbytes
 #endif  #endif
   
         if (!buf) {          if (!buf) {
                io_SetErr(EINVAL, "Error:: invalid arguments ...\n");                io_SetErr(EINVAL, "Invalid arguments");
                 return -1;                  return -1;
         }          }
         if (!nbytes)          if (!nbytes)

Removed from v.1.4.2.1  
changed lines
  Added in v.1.4.2.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>