diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-05-08 22:25:08 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-05-08 22:25:08 (GMT) |
commit | 6af5ba7c56b5af9ba9fe168c8d5889cdf2ad9433 (patch) | |
tree | 85bf08b19055787d0059c5040893ddb699d6abbd | |
parent | 224fae1bb26ebae7169f25d824dbe7f20cc59c0d (diff) | |
download | hdf5-6af5ba7c56b5af9ba9fe168c8d5889cdf2ad9433.zip hdf5-6af5ba7c56b5af9ba9fe168c8d5889cdf2ad9433.tar.gz hdf5-6af5ba7c56b5af9ba9fe168c8d5889cdf2ad9433.tar.bz2 |
[svn-r6841] Purpose:
Bug Fix
Description:
A variable wasn't declared in this file.
Solution:
Put the extern declaration of the variable in this file. It's defined
in the H5S.c module.
Platforms tested:
Modi4 (This affects only parallel platforms)
Misc. update:
-rw-r--r-- | src/H5Dio.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/H5Dio.c b/src/H5Dio.c index 4ece1b4..f07666d 100644 --- a/src/H5Dio.c +++ b/src/H5Dio.c @@ -62,6 +62,11 @@ typedef struct fm_map { static int interface_initialize_g = 0; #define INTERFACE_INIT NULL +#ifdef H5_HAVE_PARALLEL +/* Global vars whose value can be set from environment variable also */ +extern hbool_t H5S_mpi_opt_types_g; +#endif /* H5_HAVE_PARALLEL */ + /* Local functions */ static herr_t H5D_read(H5D_t *dataset, const H5T_t *mem_type, const H5S_t *mem_space, const H5S_t *file_space, |