mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r932] added a cast for the (__int64)->double.
This commit is contained in:
parent
3afdf4ac7e
commit
b31cc0e3ab
@ -107,8 +107,13 @@ main(void)
|
||||
|
||||
/* Write some data */
|
||||
for (i=0; i<ds_size[0]; i++) {
|
||||
/*
|
||||
* The extra cast in the following statement is a bug workaround
|
||||
* for the Win32 version 5.0 compiler.
|
||||
* 1998-11-06 ptl
|
||||
*/
|
||||
for (j=0; j<ds_size[1]; j++) {
|
||||
the_data[i][j] = (double)i/((double)j+1);
|
||||
the_data[i][j] = (double)((hssize_t)(i/(j+1)));
|
||||
}
|
||||
}
|
||||
if (H5Dwrite(dset, H5T_NATIVE_DOUBLE, space, space, H5P_DEFAULT,
|
||||
|
Loading…
x
Reference in New Issue
Block a user