aboutsummaryrefslogtreecommitdiffstats
path: root/package/utils/admswconfig/patches/002-fix-musl.patch
blob: 3dad1f99d56dbade3f58649409831a068f3a9855 (plain)
1
2
3
4
5
6
7
8
9
10
11
--- a/admswconfig.c
+++ b/admswconfig.c
@@ -68,7 +68,7 @@ int main(int argc, char **argv)
 		return 1;
 	}
 	strcpy(ifr.ifr_name, device);
-	ifr.ifr_data = (caddr_t)&info;
+	ifr.ifr_data = (void *)&info;
 	if (ioctl(fd, SIOCGADMINFO, &ifr) < 0) {
 		perror("SIOCGADMINFO");
 		return 1;