summaryrefslogtreecommitdiff
path: root/src/systemd
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2020-12-18 13:11:06 +0900
committerYu Watanabe <watanabe.yu+github@gmail.com>2020-12-18 13:11:06 +0900
commit2d1ad72456b9eea06cc99632d64a4c785dabaaec (patch)
treea8b9b743cf3c1be3837ec13bc48f93a09783b246 /src/systemd
parentec87f63c0ecadfdc4b5d5b40e451f7b3b6e2000f (diff)
downloadsystemd-2d1ad72456b9eea06cc99632d64a4c785dabaaec.tar.gz
sd-netlink: replace *messages[] -> **messages
Diffstat (limited to 'src/systemd')
-rw-r--r--src/systemd/sd-netlink.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systemd/sd-netlink.h b/src/systemd/sd-netlink.h
index b688ce6674..b28d5d7c16 100644
--- a/src/systemd/sd-netlink.h
+++ b/src/systemd/sd-netlink.h
@@ -60,7 +60,7 @@ sd_netlink *sd_netlink_ref(sd_netlink *nl);
sd_netlink *sd_netlink_unref(sd_netlink *nl);
int sd_netlink_send(sd_netlink *nl, sd_netlink_message *message, uint32_t *serial);
-int sd_netlink_sendv(sd_netlink *nl, sd_netlink_message *messages[], size_t msgcnt, uint32_t **ret_serial);
+int sd_netlink_sendv(sd_netlink *nl, sd_netlink_message **messages, size_t msgcnt, uint32_t **ret_serial);
int sd_netlink_call_async(sd_netlink *nl, sd_netlink_slot **ret_slot, sd_netlink_message *message,
sd_netlink_message_handler_t callback, sd_netlink_destroy_t destoy_callback,
void *userdata, uint64_t usec, const char *description);