Hi,
 
dealing with 64 bit integers I receive the run-time error message: parameter type incompatible with format specifier.
 
I am using
 
static long long int counts = 0;
and the function FmtFile ( file_handle, %d, counts ) 
 
It appears that the formatting library does not support int64... ?
 
I just found the solution: use FmtFile ( file_handle, %d[b8], counts )...