mirror of
https://git.openafs.org/openafs.git
synced 2025-02-01 14:07:39 +00:00
cast-pointer-20060126
Cast pointer to long for printf. "%p" would be a better fix, but is it supported on all platforms?
This commit is contained in:
parent
532147e455
commit
1fb654e0c0
@ -600,7 +600,7 @@ afs_FlushReclaimedVcaches(void)
|
||||
We probably need a way to be smarter about this. */
|
||||
tvc->nextfree = tmpReclaimedVCList;
|
||||
tmpReclaimedVCList = tvc;
|
||||
printf("Reclaim list flush %x failed: %d\n", tvc, code);
|
||||
printf("Reclaim list flush %lx failed: %d\n", (unsigned long) tvc, code);
|
||||
}
|
||||
}
|
||||
if (tmpReclaimedVCList)
|
||||
|
Loading…
x
Reference in New Issue
Block a user