LocalIP (Linux): try fixing musl build

This commit is contained in:
李通洲
2024-08-24 15:21:12 +08:00
parent ce7ecd3863
commit e6fb545d1d
+1 -1
View File
@@ -185,7 +185,7 @@ const char* ffDetectLocalIps(const FFLocalIpOptions* options, FFlist* results)
#ifdef __linux__
struct ethtool_cmd edata = { .cmd = ETHTOOL_GSET };
ifr.ifr_data = (caddr_t) &edata;
ifr.ifr_data = (void*) &edata;
if (ioctl(sockfd, SIOCETHTOOL, &ifr) == 0)
iface->speed = (int32_t) ethtool_cmd_speed(&edata);
#elif __FreeBSD__ || __APPLE__