summaryrefslogtreecommitdiffstats
path: root/examples/rtnl/rtnl-link-dump3.c
diff options
context:
space:
mode:
authorKen-ichirou MATSUZAWA <chamaken@gmail.com>2013-12-07 20:23:10 +0900
committerFlorian Westphal <fw@strlen.de>2013-12-07 12:53:46 +0100
commit73b9805968e430d4328f5eca78574b6c0987f2cf (patch)
treedf611dc5d0c3941640522171c96eea89bb415021 /examples/rtnl/rtnl-link-dump3.c
parentc7a66dd8c1cc25889fdb91c5ef92e92d55119497 (diff)
examples: fix trivial error message
Signed-off-by: Ken-ichirou MATSUZAWA <chamas@h4.dion.ne.jp> Signed-off-by: Florian Westphal <fw@strlen.de>
Diffstat (limited to 'examples/rtnl/rtnl-link-dump3.c')
-rw-r--r--examples/rtnl/rtnl-link-dump3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/rtnl/rtnl-link-dump3.c b/examples/rtnl/rtnl-link-dump3.c
index a6dce6f..2521214 100644
--- a/examples/rtnl/rtnl-link-dump3.c
+++ b/examples/rtnl/rtnl-link-dump3.c
@@ -81,7 +81,7 @@ int main(void)
portid = mnl_socket_get_portid(nl);
if (mnl_socket_sendto(nl, nlh, nlh->nlmsg_len) < 0) {
- perror("mnl_socket_send");
+ perror("mnl_socket_sendto");
exit(EXIT_FAILURE);
}