diff options
author | Robb Matzke <matzke@llnl.gov> | 1999-02-25 15:40:27 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1999-02-25 15:40:27 (GMT) |
commit | 17535fbc174978ae71d916a02ee4dacee66a9d8c (patch) | |
tree | d3114488ba01370e6b21acca5915c4f771125713 /test/ohdr.c | |
parent | d8b07ce1d025e3f4284c5038347097180fc2da11 (diff) | |
download | hdf5-17535fbc174978ae71d916a02ee4dacee66a9d8c.zip hdf5-17535fbc174978ae71d916a02ee4dacee66a9d8c.tar.gz hdf5-17535fbc174978ae71d916a02ee4dacee66a9d8c.tar.bz2 |
[svn-r1101] Changes since 19990219
----------------------
./config/irix64
The old (-32) compiler is now supported by setting envrionment
CC='cc -32'. The -64 compiler is the default or you can set
CC='cc -64'.
./src/H5A.c
./src/H5D.c
./src/H5F.c
./src/H5Fistore.c
./src/H5Flow.c
./src/H5G.c
./src/H5I.c
./src/H5Ocomp.c
./src/H5P.c
./src/H5R.c
./src/H5RA.c
./src/H5T.c
./src/H5Tbit.c
./src/H5Tconv.c
./src/H5Z.c
./src/H5detect.c
./test/big.c
./test/cmpd_dset.c
./test/dsets.c
./test/dtypes.c
./test/enum.c
./test/mtime.c
./test/ohdr.c
./tools/h5ls.c
Fixed lots of warnings on Irix64. Mailed a few remaining
warnings in H5S to Quincey and a few in the dumper to
Ruey-Hsia.
Diffstat (limited to 'test/ohdr.c')
-rw-r--r-- | test/ohdr.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/ohdr.c b/test/ohdr.c index ec6c3b1..32b97bb 100644 --- a/test/ohdr.c +++ b/test/ohdr.c @@ -44,7 +44,7 @@ main(void) H5F_t *f=NULL; char filename[1024]; H5G_entry_t oh_ent; - H5O_stab_t stab, ro, *ptr=NULL; + H5O_stab_t stab, ro; int i; /* Reset library */ @@ -83,7 +83,7 @@ main(void) H5Eprint(stdout); goto error; } - if (NULL==(ptr=H5O_read(&oh_ent, H5O_STAB, 0, &ro))) { + if (NULL==H5O_read(&oh_ent, H5O_STAB, 0, &ro)) { FAILED(); H5Eprint(stdout); goto error; @@ -115,7 +115,7 @@ main(void) H5Eprint(stdout); goto error; } - if (NULL==(ptr=H5O_read(&oh_ent, H5O_STAB, 0, &ro))) { + if (NULL==H5O_read(&oh_ent, H5O_STAB, 0, &ro)) { FAILED(); H5Eprint(stdout); goto error; @@ -148,7 +148,7 @@ main(void) H5Eprint(stdout); goto error; } - if (NULL==(ptr=H5O_read(&oh_ent, H5O_STAB, 1, &ro))) { + if (NULL==H5O_read(&oh_ent, H5O_STAB, 1, &ro)) { FAILED(); H5Eprint(stdout); goto error; @@ -180,7 +180,7 @@ main(void) H5Eprint(stdout); goto error; } - if (NULL==(ptr=H5O_read(&oh_ent, H5O_STAB, 1, &ro))) { + if (NULL==H5O_read(&oh_ent, H5O_STAB, 1, &ro)) { FAILED(); H5Eprint(stdout); goto error; |