diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-08-08 19:14:19 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-08-08 19:14:19 (GMT) |
commit | e6113716250b0bea19a87ada7d4b2b9adf8b1106 (patch) | |
tree | 7296f73769ee4d0e64e2170a7355fc53365ea12f | |
parent | 5ce68b5506929229c2c75fb64434bb3744f9ec7f (diff) | |
download | hdf5-e6113716250b0bea19a87ada7d4b2b9adf8b1106.zip hdf5-e6113716250b0bea19a87ada7d4b2b9adf8b1106.tar.gz hdf5-e6113716250b0bea19a87ada7d4b2b9adf8b1106.tar.bz2 |
[svn-r7314] Purpose:
Feature change
Description:
Change the fileno field in H5G_stat_t from 'unsigned long[2]' to just
'unsigned long'.
Change the objno field in H5G_stat_t from 'unsigned long[2]' to 'haddr_t'
Platforms tested:
h5committested
-rw-r--r-- | src/H5Gpublic.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Gpublic.h b/src/H5Gpublic.h index 88b6c45..9526904 100644 --- a/src/H5Gpublic.h +++ b/src/H5Gpublic.h @@ -71,8 +71,8 @@ typedef enum H5G_obj_t { /* Information about an object */ typedef struct H5G_stat_t { - unsigned long fileno[2]; /*file number */ - unsigned long objno[2]; /*object number */ + unsigned long fileno; /*file number */ + haddr_t objno; /*object number */ unsigned nlink; /*number of hard links to object*/ H5G_obj_t type; /*basic object type */ time_t mtime; /*modification time */ |