aboutsummaryrefslogtreecommitdiff
path: root/findutils
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-08-23 10:52:52 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-08-23 10:52:52 +0000
commit6ee023cf629c83af8d10b383ab0780ec043f0785 (patch)
tree4ec08b459891bde261e36eef785e92eb71bac44c /findutils
parentde4c5d3d8c77f0c1f68b72fff3d7e3be0dc2dec2 (diff)
downloadbusybox-w32-6ee023cf629c83af8d10b383ab0780ec043f0785.tar.gz
busybox-w32-6ee023cf629c83af8d10b383ab0780ec043f0785.tar.bz2
busybox-w32-6ee023cf629c83af8d10b383ab0780ec043f0785.zip
*: compile fixes for 64-bit build
Diffstat (limited to 'findutils')
-rw-r--r--findutils/find.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/findutils/find.c b/findutils/find.c
index 86f787d3f..21584681b 100644
--- a/findutils/find.c
+++ b/findutils/find.c
@@ -881,7 +881,9 @@ USE_FEATURE_FIND_MAXDEPTH(OPT_MAXDEPTH,)
881 fileAction, /* file action */ 881 fileAction, /* file action */
882 fileAction, /* dir action */ 882 fileAction, /* dir action */
883#if ENABLE_FEATURE_FIND_MAXDEPTH 883#if ENABLE_FEATURE_FIND_MAXDEPTH
884 (void*)maxdepth,/* user data */ 884 /* double cast suppresses
885 * "cast to ptr from int of different size" */
886 (void*)(ptrdiff_t)maxdepth,/* user data */
885#else 887#else
886 NULL, /* user data */ 888 NULL, /* user data */
887#endif 889#endif