summaryrefslogtreecommitdiffstats
path: root/tools/lib/h5diff_array.c
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2008-10-22 22:33:58 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2008-10-22 22:33:58 (GMT)
commitb694ad6c877eda39822abf3af6f088ff55bfe9d7 (patch)
tree3a6215c81619edcc251fec5d8567a25a425c73f8 /tools/lib/h5diff_array.c
parent83abc3a4e4930cd94ae3dca06ef1e28c461bcc79 (diff)
downloadhdf5-b694ad6c877eda39822abf3af6f088ff55bfe9d7.zip
hdf5-b694ad6c877eda39822abf3af6f088ff55bfe9d7.tar.gz
hdf5-b694ad6c877eda39822abf3af6f088ff55bfe9d7.tar.bz2
[svn-r15933] for some reason , the use of H5_PRINTF_LL_WIDTH to convert to a unsigned long long format
is not working in ia64 linux (tg-login3) hardcoded the format to "%llu" tested: windows, linux (kagiso), solaris, ia64 linux (tg-login3)
Diffstat (limited to 'tools/lib/h5diff_array.c')
-rw-r--r--tools/lib/h5diff_array.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/h5diff_array.c b/tools/lib/h5diff_array.c
index 0629c3e..9d4edc6 100644
--- a/tools/lib/h5diff_array.c
+++ b/tools/lib/h5diff_array.c
@@ -247,7 +247,7 @@ void print_pos( int *ph, /* print header */
parallel_print("[ " );
for ( i = 0; i < rank; i++)
{
- parallel_print("%"H5_PRINTF_LL_WIDTH"u ", (unsigned long_long)pos[i]);
+ parallel_print("%llu ", (unsigned long_long)pos[i]);
}
parallel_print("]" );
}