Changeset 3621 in MondoRescue for branches/3.3/mindi-busybox/networking/isrv.c


Ignore:
Timestamp:
Dec 20, 2016, 4:07:32 PM (7 years ago)
Author:
Bruno Cornec
Message:

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

Location:
branches/3.3
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi-busybox/networking/isrv.c

    r2725 r3621  
    195195}
    196196
    197 void BUG_sizeof_fd_set_is_strange(void);
    198197static void handle_fd_set(isrv_state_t *state, fd_set *fds, int (*h)(int, void **))
    199198{
     
    204203    int fd_cnt = FD_COUNT;
    205204
    206     if (LONG_CNT * sizeof(long) != sizeof(fd_set))
    207         BUG_sizeof_fd_set_is_strange();
     205    BUILD_BUG_ON(LONG_CNT * sizeof(long) != sizeof(fd_set));
    208206
    209207    fds_pos = 0;
Note: See TracChangeset for help on using the changeset viewer.