From 14a8a1e7dd1301002c99598a2b067cde3ca19b6e Mon Sep 17 00:00:00 2001 From: Eric Leblond Date: Thu, 31 Jul 2008 10:41:57 +0200 Subject: cleanup: fix compilation warning related to signed and unsigned comparisons This patch fixes the warning related to signed and unsigned comparaison. Signed-off-by: Eric Leblond --- libipulog/libipulog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libipulog') diff --git a/libipulog/libipulog.c b/libipulog/libipulog.c index 6b7ea35..2f58ea6 100644 --- a/libipulog/libipulog.c +++ b/libipulog/libipulog.c @@ -96,7 +96,7 @@ ipulog_netlink_recvfrom(const struct ipulog_handle *h, return -1; } nlh = (struct nlmsghdr *)buf; - if (nlh->nlmsg_flags & MSG_TRUNC || status > len) { + if (nlh->nlmsg_flags & MSG_TRUNC || (size_t) status > len) { ipulog_errno = IPULOG_ERR_TRUNC; return -1; } -- cgit v1.2.3