diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-08-08 19:25:18 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-08-08 19:25:18 (GMT) |
commit | 95bf191857663a68e37e7bd78122fd681dbb9724 (patch) | |
tree | b313ebac701d73609deed77d65a7df3b5432f71c /test/mtime.c | |
parent | a89594728adfd0b3aded473b44565c5e5e5dcd18 (diff) | |
download | hdf5-95bf191857663a68e37e7bd78122fd681dbb9724.zip hdf5-95bf191857663a68e37e7bd78122fd681dbb9724.tar.gz hdf5-95bf191857663a68e37e7bd78122fd681dbb9724.tar.bz2 |
[svn-r7320] Purpose:
Refactored code
Description:
Chase changes for the 'fileno' and 'objno' fields in H5G_stat_t
Platforms tested:
h5committested
Diffstat (limited to 'test/mtime.c')
-rw-r--r-- | test/mtime.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/mtime.c b/test/mtime.c index f92465a..6dfc2c9 100644 --- a/test/mtime.c +++ b/test/mtime.c @@ -97,8 +97,7 @@ main(void) if (H5Fclose(file)<0) return 1; /* Compare times from the two ways of calling H5Gget_objinfo() */ - if (sb1.objno[0]!=sb2.objno[0] || sb1.objno[1]!=sb2.objno[1] || - sb1.mtime!=sb2.mtime) { + if (sb1.objno!=sb2.objno || sb1.mtime!=sb2.mtime) { H5_FAILED(); puts(" Calling H5Gget_objinfo() with the dataset ID returned"); puts(" different values than calling it with a file and dataset"); |