summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2022-07-25 15:47:02 +0200
committerThomas Haller <thaller@redhat.com>2022-07-26 12:28:04 +0200
commit9c3e0846ee16b1f0074961b12e98376651389b15 (patch)
treef41a951bde7a2dba072b6dabf6089b17d51eb1c9
parent1f7db38dd79e101735bf625cb8f5d0f28e32a016 (diff)
downloadNetworkManager-9c3e0846ee16b1f0074961b12e98376651389b15.tar.gz
platform/trivial: add blank line after variable declaration in NLA_PUT_TYPE()
-rw-r--r--src/libnm-platform/nm-netlink.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libnm-platform/nm-netlink.h b/src/libnm-platform/nm-netlink.h
index ccd4b787c7..ec4fd4f3b8 100644
--- a/src/libnm-platform/nm-netlink.h
+++ b/src/libnm-platform/nm-netlink.h
@@ -304,6 +304,7 @@ nla_put_uint32(struct nl_msg *msg, int attrtype, uint32_t val)
G_STMT_START \
{ \
type __nla_tmp = value; \
+ \
NLA_PUT(msg, attrtype, sizeof(type), &__nla_tmp); \
} \
G_STMT_END