summaryrefslogtreecommitdiff
path: root/sys-apps/pcmciautils/files/pcmciautils-018_p8-musl-unsigned-type.patch
blob: 6039b814709630dbc73807a75fbf475882e49d42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
https://git.alpinelinux.org/aports/plain/main/pcmciautils/unsigned.patch
https://bugs.gentoo.org/716120
--- a/src/read-cis.c
+++ b/src/read-cis.c
@@ -51,7 +51,7 @@
 		/* Get indirect link from the MFC tuple */
 		read_cis(tuple->Flags.link_space,
 			       tuple->LinkOffset, 5, link);
-		ofs = *(u_int *)(link+1);
+		ofs = *(unsigned int *)(link+1);
 		tuple->Flags.space = (link[0] == CISTPL_MFC_ATTR);
 		/* Move to the next indirect link */
 		tuple->LinkOffset += 5;
--- a/src/yacc_config.y
+++ b/src/yacc_config.y
@@ -40,7 +40,7 @@
 
 %union {
     char *str;
-    u_long num;
+    unsigned long num;
     struct adjust_list_t *adjust;
 }