test-rtnl: fix typo

This commit is contained in:
Tom Gundersen 2013-11-08 11:18:51 +01:00
parent c6581cc14f
commit 8e1519bddb

View file

@ -137,7 +137,7 @@ int main(void) {
assert(sd_rtnl_message_get_type(r, &type) >= 0);
assert(type == RTM_NEWLINK);
assert(sd_rtnl_message_read(m, &type, data) == 0);
assert(sd_rtnl_message_read(m, &type, &data) == 0);
assert((r = sd_rtnl_message_unref(r)) == NULL);
assert(sd_rtnl_send_with_reply_and_block(rtnl, m, -1, &r) == -EPERM);
@ -153,7 +153,7 @@ int main(void) {
assert(type == IFLA_MTU);
assert(*mtu_reply == 0);
assert(sd_rtnl_message_read(m, &type, data) == 0);
assert(sd_rtnl_message_read(m, &type, &data) == 0);
assert(sd_rtnl_send_with_reply_and_block(rtnl, m, -1, &r) >= 0);
while (sd_rtnl_message_read(r, &type, &data) > 0) {