diff options
author | Neil Fortner <nfortne2@hdfgroup.org> | 2009-04-21 15:40:11 (GMT) |
---|---|---|
committer | Neil Fortner <nfortne2@hdfgroup.org> | 2009-04-21 15:40:11 (GMT) |
commit | f9fdf6333aed89dc7ad36948d4b6ae13f2b9d791 (patch) | |
tree | e325d59168936d7fe9c8602f29529cd9c3edba10 /src | |
parent | d301ea9246d16b067baee9f52cb8b31e802ecdcc (diff) | |
download | hdf5-f9fdf6333aed89dc7ad36948d4b6ae13f2b9d791.zip hdf5-f9fdf6333aed89dc7ad36948d4b6ae13f2b9d791.tar.gz hdf5-f9fdf6333aed89dc7ad36948d4b6ae13f2b9d791.tar.bz2 |
[svn-r16817] Fix problem in H5Z.c with --disable-deprecated-symbols
Tested: jam (--disable-deprecated-symbols)
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Z.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -244,6 +244,7 @@ H5Zregister(const void *cls) * can be determined by the value of the first field. */ if(cls_real->version != H5Z_CLASS_T_VERS) { +#ifndef H5_NO_DEPRECATED_SYMBOLS /* Assume it is an old "H5Z_class1_t" instead */ const H5Z_class1_t *cls_old = (const H5Z_class1_t *) cls; @@ -259,6 +260,11 @@ H5Zregister(const void *cls) /* Set cls_real to point to the translated structure */ cls_real = &cls_new; + +#else /* H5_NO_DEPRECATED_SYMBOLS */ + /* Deprecated symbols not allowed, throw an error */ + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid H5Z_class_t version number"); +#endif /* H5_NO_DEPRECATED_SYMBOLS */ } /* end if */ if (cls_real->id<0 || cls_real->id>H5Z_FILTER_MAX) |