[svn-r15989] Merge with 1.8 up to rev 15945

Regarding use of unsigned long long print format

Tested: linux
This commit is contained in:
Pedro Vicente Nunes
2008-10-29 14:56:24 -05:00
parent 13294e2042
commit 840c6e34d3
3 changed files with 11 additions and 74 deletions

View File

@@ -18,32 +18,6 @@
#include "H5private.h"
#include "h5tools.h"
/*-------------------------------------------------------------------------
* Function: print_size
*
* Purpose: print dimensions
*
*-------------------------------------------------------------------------
*/
#if defined (H5DIFF_DEBUG)
static void
print_size (int rank, hsize_t *dims)
{
int i;
parallel_print("[" );
for ( i = 0; i < rank-1; i++)
{
parallel_print("%"H5_PRINTF_LL_WIDTH"u", (unsigned long_long)dims[i]);
parallel_print("x");
}
parallel_print("%"H5_PRINTF_LL_WIDTH"u", (unsigned long_long)dims[rank-1]);
parallel_print("]\n" );
}
#endif /* H5DIFF_DEBUG */
/*-------------------------------------------------------------------------
* Function: diff_dataset