summaryrefslogtreecommitdiffstats
path: root/src/H5Vprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2006-11-27 21:08:29 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2006-11-27 21:08:29 (GMT)
commit03c994ee5921d46c7332b494844e55432f7bde31 (patch)
treeb6e998db33afc3ecbcb20765c08396825c72e342 /src/H5Vprivate.h
parente40fa7aa3929e24934463562ed74859a6ebb5ddb (diff)
downloadhdf5-03c994ee5921d46c7332b494844e55432f7bde31.zip
hdf5-03c994ee5921d46c7332b494844e55432f7bde31.tar.gz
hdf5-03c994ee5921d46c7332b494844e55432f7bde31.tar.bz2
[svn-r12987] Description:
Clear up some confusion for the internal H5V_log2_gen() routine, so it always takes a 64-bit value as a parameter. Tested on: Linux/32 2.6 (chicago) Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5Vprivate.h')
-rw-r--r--src/H5Vprivate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Vprivate.h b/src/H5Vprivate.h
index 0554c47..fc84086 100644
--- a/src/H5Vprivate.h
+++ b/src/H5Vprivate.h
@@ -344,7 +344,7 @@ static const char LogTable256[] =
*-------------------------------------------------------------------------
*/
static H5_inline unsigned UNUSED
-H5V_log2_gen(hsize_t n)
+H5V_log2_gen(uint64_t n)
{
unsigned r; /* r will be log2(n) */
register unsigned int t, tt, ttt; /* temporaries */