summaryrefslogtreecommitdiffstats
path: root/src/H5Eprivate.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Eprivate.h')
-rw-r--r--src/H5Eprivate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Eprivate.h b/src/H5Eprivate.h
index ebfec54..c5fb04e 100644
--- a/src/H5Eprivate.h
+++ b/src/H5Eprivate.h
@@ -39,7 +39,7 @@
#define HCOMMON_ERROR(maj, min, str) \
HERROR (maj, min, str); \
if (H5_IS_API(FUNC) && H5E_auto_g) \
- (H5E_auto_g)(H5E_auto_data_g)
+ (void)((H5E_auto_g)(H5E_auto_data_g))
/*
* HDONE_ERROR macro, used to facilitate error reporting between a
@@ -62,7 +62,7 @@
*/
#define HGOTO_ERROR(maj, min, ret_val, str) { \
HCOMMON_ERROR (maj, min, str); \
- HGOTO_DONE (ret_val); \
+ HGOTO_DONE (ret_val) \
}
/*