[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)
This commit is contained in:
Pedro Vicente Nunes
2008-10-22 17:33:58 -05:00
parent 83abc3a4e4
commit b694ad6c87
3 changed files with 8 additions and 33 deletions

View File

@@ -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("]" );
}