diff options
author | Robb Matzke <matzke@llnl.gov> | 1997-09-15 19:27:23 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1997-09-15 19:27:23 (GMT) |
commit | 8656a64d002335cdb40b846dd8eb9013cc295226 (patch) | |
tree | 031cfb619394dc14a59887c3318de2cd3d52dd98 /src/H5Bprivate.h | |
parent | 0cd492bb8e5fb8db0d227ad1fc6073be14e36b44 (diff) | |
download | hdf5-8656a64d002335cdb40b846dd8eb9013cc295226.zip hdf5-8656a64d002335cdb40b846dd8eb9013cc295226.tar.gz hdf5-8656a64d002335cdb40b846dd8eb9013cc295226.tar.bz2 |
[svn-r83] Bug fixed in H5G_namei().
Arg type changes in H5Bprivate.h
Sorted Makefile.in
Diffstat (limited to 'src/H5Bprivate.h')
-rw-r--r-- | src/H5Bprivate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Bprivate.h b/src/H5Bprivate.h index 597c79f..457c8af 100644 --- a/src/H5Bprivate.h +++ b/src/H5Bprivate.h @@ -55,8 +55,8 @@ typedef struct H5B_class_t { haddr_t (*new)(hdf5_file_t*,void*,void*,void*); intn (*cmp)(hdf5_file_t*,void*,void*,void*); herr_t (*found)(hdf5_file_t*,haddr_t,const void*,void*,const void*); - haddr_t (*insert)(hdf5_file_t*,haddr_t,int*,void*,int*,void*,void*, - void*,int*); + haddr_t (*insert)(hdf5_file_t*,haddr_t,int*,void*,hbool_t*,void*,void*, + void*,hbool_t*); herr_t (*list)(hdf5_file_t*,haddr_t,void*); herr_t (*decode)(hdf5_file_t*,uint8*,void*); herr_t (*encode)(hdf5_file_t*,uint8*,void*); |