[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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user