intptr_t is an optional type, use intmax_t
This commit is contained in:
parent
ea819714c2
commit
1dbb848037
2
find.c
2
find.c
|
@ -19,7 +19,7 @@
|
||||||
/* because putting integers in pointers is undefined by the standard */
|
/* because putting integers in pointers is undefined by the standard */
|
||||||
union extra {
|
union extra {
|
||||||
void *p;
|
void *p;
|
||||||
intptr_t i;
|
intmax_t i;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Argument passed into a primary's function */
|
/* Argument passed into a primary's function */
|
||||||
|
|
Loading…
Reference in New Issue
Block a user