Commit ccd5e229 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov

net: sockets -- Replace __u32 with u32

We provide such type in types.h.
Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
parent 00e14f04
......@@ -283,7 +283,7 @@ static int unix_collect_one(struct unix_diag_msg *m, struct rtattr **tb)
goto err;
memcpy(d->icons, RTA_DATA(tb[UNIX_DIAG_ICONS]), len);
d->icons[len / sizeof(__u32)] = 0;
d->icons[len / sizeof(u32)] = 0;
}
if (tb[UNIX_DIAG_RQLEN])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment