Ignore:
Timestamp:
Nov 13, 2009, 1:41:34 PM (14 years ago)
Author:
mies
Message:

Fixed tons of warnings when using CXXFLAGS="-Wall"!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • source/ariba/communication/networkinfo/NetworkChangeDetection.cpp

    r3690 r6919  
    190190
    191191                for( ; bytesRead > 0; header = NLMSG_NEXT(header, bytesRead)) {
    192                         if (    !NLMSG_OK(header, bytesRead) ||
     192                        if (!NLMSG_OK(header, (int)bytesRead) ||
    193193                                (size_t) bytesRead < sizeof(struct nlmsghdr) ||
    194                                 (size_t) bytesRead < header->nlmsg_len) {
     194                                (size_t) bytesRead < (size_t)header->nlmsg_len) {
    195195                                continue;
    196196                        }
Note: See TracChangeset for help on using the changeset viewer.