From: Guus Sliepen Date: Sat, 2 Sep 2017 19:06:25 +0000 (+0200) Subject: Fix a compiler warning. X-Git-Tag: release-1.1pre15~4 X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=a073b2cb0bca646685a83479db6b66d518240bc5 Fix a compiler warning. --- diff --git a/src/uml_device.c b/src/uml_device.c index 57d48438..2a06de37 100644 --- a/src/uml_device.c +++ b/src/uml_device.c @@ -228,7 +228,7 @@ static bool read_packet(vpn_packet_t *packet) { return false; } - if(connect(write_fd, &request.sock, sizeof request.sock) < 0) { + if(connect(write_fd, (struct sockkadr *)&request.sock, sizeof request.sock) < 0) { logger(DEBUG_ALWAYS, LOG_ERR, "Could not bind write %s: %s", device_info, strerror(errno)); event_exit(); return false;