diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-08-08 19:17:40 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-08-08 19:17:40 (GMT) |
commit | 2e1ef03cef0058566c4ab4f8f2490760f776b0a8 (patch) | |
tree | 2682be7f0bc894222acdab47363a43675474965f /src/H5FDpublic.h | |
parent | bdc659f2bb7a04db069b98571298658062178c69 (diff) | |
download | hdf5-2e1ef03cef0058566c4ab4f8f2490760f776b0a8.zip hdf5-2e1ef03cef0058566c4ab4f8f2490760f776b0a8.tar.gz hdf5-2e1ef03cef0058566c4ab4f8f2490760f776b0a8.tar.bz2 |
[svn-r7317] Purpose:
Feature change & code cleanup
Description:
Changed fileno field in H5FD_t struct from 'unsigned long[2]' to just
'unsigned long'.
Changed over code to handle the fileno change.
Chased error API changes
Platforms tested:
h5committested
Diffstat (limited to 'src/H5FDpublic.h')
-rw-r--r-- | src/H5FDpublic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FDpublic.h b/src/H5FDpublic.h index 0f541f9..3454f28 100644 --- a/src/H5FDpublic.h +++ b/src/H5FDpublic.h @@ -183,7 +183,7 @@ typedef struct H5FD_free_t { struct H5FD_t { hid_t driver_id; /*driver ID for this file */ const H5FD_class_t *cls; /*constant class info */ - unsigned long fileno[2]; /* File serial number */ + unsigned long fileno; /* File serial number */ unsigned long feature_flags; /* VFL Driver feature Flags */ hsize_t threshold; /* Threshold for alignment */ hsize_t alignment; /* Allocation alignment */ |