Usermode/ld-acess - Fix constness in FD_ISSET
authorJohn Hodge <[email protected]>
Sun, 16 Mar 2014 09:08:05 +0000 (17:08 +0800)
committerJohn Hodge <[email protected]>
Sun, 16 Mar 2014 09:08:05 +0000 (17:08 +0800)
Usermode/Libraries/ld-acess.so_src/include_exp/acess/fd_set.h

index b2367d1..a0fbe43 100644 (file)
@@ -39,7 +39,7 @@ static inline  void   FD_SET(int fd, fd_set *fdsetp)
        fd_set_ent_t    mask = 1 << (fd % 16);
        fdsetp->flags[fd/16] |= mask;
 }
-static inline  int     FD_ISSET(int fd, fd_set *fdsetp)
+static inline  int     FD_ISSET(int fd, const fd_set *fdsetp)
 {
        if(fd < 0 || fd > FD_SETSIZE)   return 0;
        fd_set_ent_t    mask = 1 << (fd % 16);

UCC git Repository :: git.ucc.asn.au