aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndre Przywara <andre.przywara@arm.com>2015-07-17 17:02:14 +0100
committerWill Deacon <will.deacon@arm.com>2015-07-20 18:25:48 +0100
commitd77bd4f466f341d4b35fe8b91176ef8a37160e19 (patch)
tree2747c8df25c619e432abc2d5580efa59fbbf92a7
parent369c27e68300a6cf0a98f7455a81b7e4473c7a8b (diff)
downloadkvmtool-d77bd4f466f341d4b35fe8b91176ef8a37160e19.tar.gz
Fix call to connect()
According to the manpage and the prototype the second argument to connect(2) is a "const struct sockaddr*", so cast our protocol specific type back to the super type. This fixes compilation on musl-libc. Signed-off-by: Andre Przywara <andre.przywara@arm.com> Signed-off-by: Will Deacon <will.deacon@arm.com>
-rw-r--r--kvm-ipc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kvm-ipc.c b/kvm-ipc.c
index a289d4bd..857b0dc9 100644
--- a/kvm-ipc.c
+++ b/kvm-ipc.c
@@ -99,7 +99,7 @@ int kvm__get_sock_by_instance(const char *name)
strlcpy(local.sun_path, sock_file, sizeof(local.sun_path));
len = strlen(local.sun_path) + sizeof(local.sun_family);
- r = connect(s, &local, len);
+ r = connect(s, (struct sockaddr *)&local, len);
if (r < 0 && errno == ECONNREFUSED) {
/* Tell the user clean ghost socket file */
pr_err("\"%s\" could be a ghost socket file, please remove it",