diff options
-rw-r--r-- | include/netlink/attr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/netlink/attr.h b/include/netlink/attr.h index 0ed3da3..82e4c38 100644 --- a/include/netlink/attr.h +++ b/include/netlink/attr.h @@ -205,7 +205,7 @@ extern int nla_is_nested(struct nlattr *); * @arg value NUL terminated character string. */ #define NLA_PUT_STRING(msg, attrtype, value) \ - NLA_PUT(msg, attrtype, strlen(value) + 1, value) + NLA_PUT(msg, attrtype, (int) strlen(value) + 1, value) /** * Add flag attribute to netlink message. |