summaryrefslogtreecommitdiffstats
path: root/hl
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2009-06-24 15:25:28 (GMT)
committerScot Breitenfeld <brtnfld@hdfgroup.org>2009-06-24 15:25:28 (GMT)
commit5c0dbbb8d8564b0ddc3ff838a4240139a6248c2b (patch)
treebd0de0cccb636392c7e758801795b9da5fa081ac /hl
parentf90aae49e3499c434643feafa8b359dd605b663c (diff)
downloadhdf5-5c0dbbb8d8564b0ddc3ff838a4240139a6248c2b.zip
hdf5-5c0dbbb8d8564b0ddc3ff838a4240139a6248c2b.tar.gz
hdf5-5c0dbbb8d8564b0ddc3ff838a4240139a6248c2b.tar.bz2
[svn-r17098] Description:
Changed ordering of err1 and err2 declarations. Tested: windows, smirom (icc)
Diffstat (limited to 'hl')
-rw-r--r--hl/src/H5HLprivate2.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/hl/src/H5HLprivate2.h b/hl/src/H5HLprivate2.h
index 00d73e1..322da1a 100644
--- a/hl/src/H5HLprivate2.h
+++ b/hl/src/H5HLprivate2.h
@@ -251,9 +251,9 @@ func \
H5E_auto2_t efunc2; \
void *H5E_saved_edata; \
H5_GLUE(FUNC_ERR_VAR_, use_err)(ret_typ, err) \
- H5_GLUE(FUNC_ENTER_, scope) \
herr_t err1 = H5Eget_auto2(H5E_DEFAULT, &efunc2, &H5E_saved_edata); \
- herr_t err2 = H5Eset_auto2(H5E_DEFAULT, NULL, NULL);
+ herr_t err2 = H5Eset_auto2(H5E_DEFAULT, NULL, NULL); \
+ H5_GLUE(FUNC_ENTER_, scope)
/* Macros for label when a function initialization can fail */
#define H5_PRIV_YES_FUNC_INIT_FAILED func_init_failed: