mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r10728] Purpose:
bug fix Description: some lines were longer that 132 characters (the "official" max lenght of a line in F95) the g95 compiler complained about it Solution: reduce the line lenght Platforms tested: linux (g95, intel) Misc. update:
This commit is contained in:
parent
17b3d2b13e
commit
a78417597b
@ -178,7 +178,7 @@ endif
|
||||
! write dataset
|
||||
!//////////////////////////////////////////////////////////
|
||||
|
||||
call h5dwrite_f(dset_id, H5T_NATIVE_INTEGER, wbuf, dims, hdferror, file_space_id = fspace_id, mem_space_id = mspace_id, xfer_prp = dxpl_id)
|
||||
call h5dwrite_f(dset_id,H5T_NATIVE_INTEGER,wbuf,dims,hdferror,file_space_id=fspace_id,mem_space_id=mspace_id,xfer_prp=dxpl_id)
|
||||
call check("h5dwrite_f", hdferror, nerrors)
|
||||
|
||||
|
||||
@ -259,7 +259,7 @@ endif
|
||||
! read dataset
|
||||
!//////////////////////////////////////////////////////////
|
||||
|
||||
call h5dread_f(dset_id, H5T_NATIVE_INTEGER, rbuf, dims, hdferror, file_space_id = fspace_id, mem_space_id = mspace_id, xfer_prp = dxpl_id)
|
||||
call h5dread_f(dset_id,H5T_NATIVE_INTEGER,rbuf,dims,hdferror,file_space_id=fspace_id,mem_space_id=mspace_id,xfer_prp=dxpl_id)
|
||||
call check("h5pcreate_f", hdferror, nerrors)
|
||||
|
||||
!//////////////////////////////////////////////////////////
|
||||
|
Loading…
x
Reference in New Issue
Block a user