mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r1990]
Problem: Example did not define string datatype correctly for one of the attributes. H5Tset_strpad call was missing. This fix closes bug #323.
This commit is contained in:
parent
459550ed9c
commit
acc3ac0da8
@ -118,6 +118,7 @@ main (void)
|
||||
aid3 = H5Screate(H5S_SCALAR);
|
||||
atype = H5Tcopy(H5T_C_S1);
|
||||
H5Tset_size(atype, 4);
|
||||
H5Tset_strpad(atype,H5T_STR_NULLTERM);
|
||||
attr3 = H5Acreate(dataset, ANAMES, atype, aid3, H5P_DEFAULT);
|
||||
|
||||
/*
|
||||
@ -176,7 +177,7 @@ main (void)
|
||||
atype = H5Tcopy(H5T_C_S1);
|
||||
H5Tset_size(atype, 5);
|
||||
ret = H5Aread(attr, atype, string_out);
|
||||
printf("The value of the attribute with the index 2 is %s \n", string_out);
|
||||
printf("The value of the attribute with index 2 is %s \n", string_out);
|
||||
ret = H5Aclose(attr);
|
||||
ret = H5Tclose(atype);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user