summaryrefslogtreecommitdiffstats
path: root/src/debug.c
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1997-09-24 16:30:22 (GMT)
committerRobb Matzke <matzke@llnl.gov>1997-09-24 16:30:22 (GMT)
commit0f7fcaad25171bd5d4eb8f822d88b5770d9b235d (patch)
tree0e187af66ca6ec2036d56a882133008f46d78fb2 /src/debug.c
parent8a4d8a5b0c7e473566ae9347ac228eaea0490875 (diff)
downloadhdf5-0f7fcaad25171bd5d4eb8f822d88b5770d9b235d.zip
hdf5-0f7fcaad25171bd5d4eb8f822d88b5770d9b235d.tar.gz
hdf5-0f7fcaad25171bd5d4eb8f822d88b5770d9b235d.tar.bz2
[svn-r111] Changed hdf5_file_t to H5F_t, split data struct ito two halves, fixed
problems when opening the same file more than once.
Diffstat (limited to 'src/debug.c')
-rw-r--r--src/debug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/debug.c b/src/debug.c
index 48e423c..016eaf9 100644
--- a/src/debug.c
+++ b/src/debug.c
@@ -46,7 +46,7 @@ int
main (int argc, char *argv[])
{
hid_t fid;
- hdf5_file_t *f;
+ H5F_t *f;
haddr_t addr = 0;
uint8 sig[16];
intn i;
@@ -72,7 +72,7 @@ main (int argc, char *argv[])
HDexit (1);
}
if (NULL==(f=H5Aatom_object (fid))) {
- fprintf (stderr, "cannot obtain hdf5_file_t pointer\n");
+ fprintf (stderr, "cannot obtain H5F_t pointer\n");
HDexit (2);
}