summaryrefslogtreecommitdiffstats
path: root/fortran/src/H5Fff.f90
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2009-06-10 16:03:42 (GMT)
committerScot Breitenfeld <brtnfld@hdfgroup.org>2009-06-10 16:03:42 (GMT)
commit66153395600210692eac9170794bfff3804106c8 (patch)
tree6a17511c8745515f7015f634c469c1a8b1577461 /fortran/src/H5Fff.f90
parent7d5ef3e8adb287be145a03f47e2099a04cb7a8cb (diff)
downloadhdf5-66153395600210692eac9170794bfff3804106c8.zip
hdf5-66153395600210692eac9170794bfff3804106c8.tar.gz
hdf5-66153395600210692eac9170794bfff3804106c8.tar.bz2
[svn-r17023] Description:
Added debug statements in order to investigate intermittent failing of test on honest4 at NCSA, remove after debugging.
Diffstat (limited to 'fortran/src/H5Fff.f90')
-rw-r--r--fortran/src/H5Fff.f906
1 files changed, 5 insertions, 1 deletions
diff --git a/fortran/src/H5Fff.f90 b/fortran/src/H5Fff.f90
index 5d76865..aa3bbb9 100644
--- a/fortran/src/H5Fff.f90
+++ b/fortran/src/H5Fff.f90
@@ -91,7 +91,11 @@
if (present(creation_prp)) creation_prp_default = creation_prp
if (present(access_prp)) access_prp_default = access_prp
- namelen = LEN(name)
+ namelen = LEN_TRIM(name)
+
+ print*,"DEBUG Print statements in H5Fff.f90"
+ write(*,'(A,A)') "name =", name
+ print*,"namelen =", namelen
hdferr = h5fcreate_c(name, namelen, access_flags, &
creation_prp_default, access_prp_default, file_id)