libsysutil: turn on -Werror (part deux)
- x86_64 format warnings Change-Id: I81c2702f564bcada946f6a10f34bbf34c90f766b
This commit is contained in:
parent
ebf49f3e87
commit
80f63d4b2c
|
@ -18,7 +18,7 @@ LOCAL_MODULE:= libsysutils
|
|||
|
||||
LOCAL_C_INCLUDES :=
|
||||
|
||||
LOCAL_CFLAGS :=
|
||||
LOCAL_CFLAGS := -Werror
|
||||
|
||||
LOCAL_SHARED_LIBRARIES := libcutils liblog
|
||||
|
||||
|
|
|
@ -109,7 +109,7 @@ bool NetlinkEvent::parseIfAddrMessage(int type, struct ifaddrmsg *ifaddr,
|
|||
if (ifaddr->ifa_family == AF_INET) {
|
||||
struct in_addr *addr4 = (struct in_addr *) RTA_DATA(rta);
|
||||
if (RTA_PAYLOAD(rta) < sizeof(*addr4)) {
|
||||
SLOGE("Short IPv4 address (%d bytes) in %s",
|
||||
SLOGE("Short IPv4 address (%zu bytes) in %s",
|
||||
RTA_PAYLOAD(rta), msgtype);
|
||||
continue;
|
||||
}
|
||||
|
@ -117,7 +117,7 @@ bool NetlinkEvent::parseIfAddrMessage(int type, struct ifaddrmsg *ifaddr,
|
|||
} else if (ifaddr->ifa_family == AF_INET6) {
|
||||
struct in6_addr *addr6 = (struct in6_addr *) RTA_DATA(rta);
|
||||
if (RTA_PAYLOAD(rta) < sizeof(*addr6)) {
|
||||
SLOGE("Short IPv6 address (%d bytes) in %s",
|
||||
SLOGE("Short IPv6 address (%zu bytes) in %s",
|
||||
RTA_PAYLOAD(rta), msgtype);
|
||||
continue;
|
||||
}
|
||||
|
@ -152,7 +152,7 @@ bool NetlinkEvent::parseIfAddrMessage(int type, struct ifaddrmsg *ifaddr,
|
|||
}
|
||||
|
||||
if (RTA_PAYLOAD(rta) < sizeof(*cacheinfo)) {
|
||||
SLOGE("Short IFA_CACHEINFO (%d vs. %d bytes) in %s",
|
||||
SLOGE("Short IFA_CACHEINFO (%zu vs. %zu bytes) in %s",
|
||||
RTA_PAYLOAD(rta), sizeof(cacheinfo), msgtype);
|
||||
continue;
|
||||
}
|
||||
|
@ -174,7 +174,6 @@ bool NetlinkEvent::parseIfAddrMessage(int type, struct ifaddrmsg *ifaddr,
|
|||
}
|
||||
|
||||
/*
|
||||
<<<<<<< HEAD
|
||||
* Parse a RTM_NEWNDUSEROPT message.
|
||||
*/
|
||||
bool NetlinkEvent::parseNdUserOptMessage(struct nduseroptmsg *msg, int len) {
|
||||
|
|
Loading…
Reference in New Issue