mirror of
https://github.com/openvswitch/ovs
synced 2025-08-31 06:15:47 +00:00
Fix log message weird suffixes.
I think these were leftovers from the removal of %z for MSVC that happened some time ago. VMware-BZ: 1265762 Signed-off-by: Ben Pfaff <blp@nicira.com> Acked-by: Pritesh Kothari <pritesh.kothari@cisco.com>
This commit is contained in:
@@ -347,7 +347,7 @@ nl_sock_recv__(struct nl_sock *sock, struct ofpbuf *buf, bool wait)
|
||||
if (retval < sizeof *nlmsghdr
|
||||
|| nlmsghdr->nlmsg_len < sizeof *nlmsghdr
|
||||
|| nlmsghdr->nlmsg_len > retval) {
|
||||
VLOG_ERR_RL(&rl, "received invalid nlmsg (%"PRIuSIZE"d bytes < %"PRIuSIZE")",
|
||||
VLOG_ERR_RL(&rl, "received invalid nlmsg (%"PRIuSIZE" bytes < %"PRIuSIZE")",
|
||||
retval, sizeof *nlmsghdr);
|
||||
return EPROTO;
|
||||
}
|
||||
|
Reference in New Issue
Block a user