diff options
author | Neil Fortner <nfortne2@hdfgroup.org> | 2015-06-16 17:27:20 (GMT) |
---|---|---|
committer | Neil Fortner <nfortne2@hdfgroup.org> | 2015-06-16 17:27:20 (GMT) |
commit | 91eb17db8ee7fcda566436fa2336fac2cf2c3660 (patch) | |
tree | 3c5a7f44c41852889299d2c04e56a56f80ee9457 /src/H5Oprivate.h | |
parent | 4f231ddc9bd1e0b71b4ed7fd0d82e9ca362f942e (diff) | |
download | hdf5-91eb17db8ee7fcda566436fa2336fac2cf2c3660.zip hdf5-91eb17db8ee7fcda566436fa2336fac2cf2c3660.tar.gz hdf5-91eb17db8ee7fcda566436fa2336fac2cf2c3660.tar.bz2 |
[svn-r27215] Fix issue where % characters could not be used in non-printf mappings.
Other minor fixes/cleanup.
Tested: ummon
Diffstat (limited to 'src/H5Oprivate.h')
-rw-r--r-- | src/H5Oprivate.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/H5Oprivate.h b/src/H5Oprivate.h index 8462382..29f727d 100644 --- a/src/H5Oprivate.h +++ b/src/H5Oprivate.h @@ -415,11 +415,11 @@ typedef struct H5O_storage_compact_t { typedef struct H5O_storage_virtual_srcdset_t { /* Stored */ - char *file_name; /* Source file name used for virtual dataset mapping */ - char *dset_name; /* Source dataset name used for virtual dataset mapping */ struct H5S_t *virtual_select; /* Selection in the virtual dataset that is mapped to source selection */ /* Not stored */ + char *file_name; /* Source file name used for virtual dataset mapping */ + char *dset_name; /* Source dataset name used for virtual dataset mapping */ struct H5S_t *clipped_source_select; /* Clipped version of source_select */ struct H5S_t *clipped_virtual_select; /* Clipped version of virtual_select */ struct H5D_t *dset; /* Source dataset */ @@ -443,6 +443,8 @@ typedef enum H5O_virtual_space_status_t { typedef struct H5O_storage_virtual_ent_t { /* Stored */ H5O_storage_virtual_srcdset_t source_dset; /* Information about the source dataset */ + char *source_file_name; /* Original (unparsed) source file name */ + char *source_dset_name; /* Original (unparsed) source dataset name */ struct H5S_t *source_select; /* Selection in the source dataset for mapping */ /* Not stored */ |