summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Graf <tgraf@suug.ch>2010-07-03 15:14:13 +0200
committerThomas Graf <tgraf@suug.ch>2010-07-03 15:15:12 +0200
commit256d7e723c0ff402422d3501866e9301b3f64c0f (patch)
tree2a60bac123e7536e16188bc008166f9ca9ef1124
parentdb5bd57899affbcaf42ac0b93c5c7be8f51ca390 (diff)
downloadandroid_external_libnl-256d7e723c0ff402422d3501866e9301b3f64c0f.tar.gz
android_external_libnl-256d7e723c0ff402422d3501866e9301b3f64c0f.tar.bz2
android_external_libnl-256d7e723c0ff402422d3501866e9301b3f64c0f.zip
Fix compile warning in nl.c
-rw-r--r--include/netlink/netlink.h2
-rw-r--r--lib/nl.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/netlink/netlink.h b/include/netlink/netlink.h
index 34eb773..1cfe220 100644
--- a/include/netlink/netlink.h
+++ b/include/netlink/netlink.h
@@ -51,7 +51,7 @@ extern int nl_sendmsg(struct nl_sock *, struct nl_msg *,
struct msghdr *);
extern int nl_send(struct nl_sock *, struct nl_msg *);
extern int nl_send_iovec(struct nl_sock *, struct nl_msg *,
- const struct iovec *, unsigned);
+ struct iovec *, unsigned);
extern void nl_auto_complete(struct nl_sock *,
struct nl_msg *);
extern int nl_send_auto_complete(struct nl_sock *,
diff --git a/lib/nl.c b/lib/nl.c
index ed501f7..c453b60 100644
--- a/lib/nl.c
+++ b/lib/nl.c
@@ -232,7 +232,7 @@ int nl_sendmsg(struct nl_sock *sk, struct nl_msg *msg, struct msghdr *hdr)
* @see nl_sendmsg()
* @return Number of characters sent on success or a negative error code.
*/
-int nl_send_iovec(struct nl_sock *sk, struct nl_msg *msg, const struct iovec *iov, unsigned iovlen)
+int nl_send_iovec(struct nl_sock *sk, struct nl_msg *msg, struct iovec *iov, unsigned iovlen)
{
struct sockaddr_nl *dst;
struct ucred *creds;