commit 1dbb84803794a0e518db2b35eba164f063e01a70
parent ea819714c22e5a7feed13107b6e1662b3a6412cd
Author: Evan Gates <evan.gates@gmail.com>
Date: Tue, 14 Apr 2015 08:40:31 -0700
intptr_t is an optional type, use intmax_t
Diffstat:
| M | find.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --dropbox a/find.c b/find.c
@@ -19,7 +19,7 @@
/* because putting integers in pointers is undefined by the standard */
union extra {
void *p;
- intptr_t i;
+ intmax_t i;
};
/* Argument passed into a primary's function */