commit 1dbb84803794a0e518db2b35eba164f063e01a70
Author: Evan Gates <[email protected]>
Date:   Tue Apr 14 08:40:31 2015 -0700

    intptr_t is an optional type, use intmax_t

diff --git a/find.c b/find.c
index 55d4fef..980065a 100644
--- 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 */

Reply via email to