Merge branch 'master' of git://git.denx.de/u-boot-nios
[oweals/u-boot.git] / include / asm-sh / posix_types.h
index 4bb9f7e26f2459022b968f2ad1d95ab6a3b04f29..c9d9fb84f1f8d9a201a5a7b3cb7dd434b07a41d0 100644 (file)
@@ -68,7 +68,7 @@ static __inline__ void __FD_CLR(unsigned long __fd, __kernel_fd_set *__fdsetp)
 
 #undef __FD_ISSET
 static __inline__ int __FD_ISSET(unsigned long __fd, const __kernel_fd_set *__p)
-{ 
+{
        unsigned long __tmp = __fd / __NFDBITS;
        unsigned long __rem = __fd % __NFDBITS;
        return (__p->fds_bits[__tmp] & (1UL<<__rem)) != 0;