Diff for /libaitio/inc/aitio.h between versions 1.25.2.3 and 1.25.2.4

version 1.25.2.3, 2012/09/10 12:03:55 version 1.25.2.4, 2012/09/17 11:27:54
Line 401  typedef union { Line 401  typedef union {
 #define IO_SOCKADDR_INIT        { .ss = { 0 } }  #define IO_SOCKADDR_INIT        { .ss = { 0 } }
   
   
#define io_align(x, a)          (((x) + (a)) & ~(a))#define io_align(x, a)          (((x) + ((a) - 1)) & ~((a) - 1))
   
   
 // io_GetErrno() Get error code of last operation  // io_GetErrno() Get error code of last operation

Removed from v.1.25.2.3  
changed lines
  Added in v.1.25.2.4


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