summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2020-10-19 14:31:13 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2020-10-19 14:31:13 (GMT)
commitf004b3c6d6a7ac7df86c7b543f93d2f5287bcb26 (patch)
tree890d5f12205aae6e8c1c5985902a625ee9a04bea /src
parentf649cb59384ea5001a9c6468ec0ea20e57542562 (diff)
downloadhdf5-f004b3c6d6a7ac7df86c7b543f93d2f5287bcb26.zip
hdf5-f004b3c6d6a7ac7df86c7b543f93d2f5287bcb26.tar.gz
hdf5-f004b3c6d6a7ac7df86c7b543f93d2f5287bcb26.tar.bz2
Fix macro argument
Diffstat (limited to 'src')
-rw-r--r--src/H5FDhdfs.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5FDhdfs.c b/src/H5FDhdfs.c
index 50e5952..2198a31 100644
--- a/src/H5FDhdfs.c
+++ b/src/H5FDhdfs.c
@@ -43,11 +43,11 @@
* some bad symbol interpretation that raises a warning that is out of our
* control.
*/
-H5_GCC_DIAG_OFF(strict - prototypes)
-H5_GCC_DIAG_OFF(undef)
+H5_GCC_DIAG_OFF("strict-prototypes")
+H5_GCC_DIAG_OFF("undef")
#include <hdfs.h>
-H5_GCC_DIAG_ON(strict - prototypes)
-H5_GCC_DIAG_ON(undef)
+H5_GCC_DIAG_ON("strict-prototypes")
+H5_GCC_DIAG_ON("undef")
/* toggle function call prints: 1 turns on */
#define HDFS_DEBUG 0