From: Derrick Brashear Date: Fri, 18 Apr 2008 14:57:31 +0000 (+0000) Subject: STABLE14-lwp-fix-protoize-20080418 X-Git-Tag: openafs-stable-1_4_7pre4~4 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=58fe18f4f33d14923777b8491fc4c402245cc7ab;p=packages%2Fo%2Fopenafs.git STABLE14-lwp-fix-protoize-20080418 LICENSE IPL10 make this cast correct. (cherry picked from commit 8ea0eef2d6807d2ad51d29853335f115439e616c) --- diff --git a/src/butc/tcudbprocs.c b/src/butc/tcudbprocs.c index a9ec647e4..c090012b6 100644 --- a/src/butc/tcudbprocs.c +++ b/src/butc/tcudbprocs.c @@ -1021,7 +1021,7 @@ restoreDbEntries(tapeInfoPtr, rstTapeInfoPtr) void * restoreDbFromTape(void *param) { - afs_uint32 taskId = (void *)param; + afs_uint32 taskId = (afs_uint32) param; afs_int32 code = 0; afs_int32 i; struct butm_tapeInfo tapeInfo;