summaryrefslogtreecommitdiffstats
path: root/tools/test/perform/sio_engine.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2020-08-15 01:02:55 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2020-08-15 01:02:55 (GMT)
commit686dbefff5afe0a7572dccbb74ab826a24e6fcbf (patch)
tree142910a42c476648e984c84967a762a750cff57e /tools/test/perform/sio_engine.c
parent62c296f1eb69255c5140a675270b11b5b265a220 (diff)
downloadhdf5-686dbefff5afe0a7572dccbb74ab826a24e6fcbf.zip
hdf5-686dbefff5afe0a7572dccbb74ab826a24e6fcbf.tar.gz
hdf5-686dbefff5afe0a7572dccbb74ab826a24e6fcbf.tar.bz2
Normalization of perform directory with develop
Brings over chunk_cache program
Diffstat (limited to 'tools/test/perform/sio_engine.c')
-rw-r--r--tools/test/perform/sio_engine.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/test/perform/sio_engine.c b/tools/test/perform/sio_engine.c
index 2562ab8..aa3a316 100644
--- a/tools/test/perform/sio_engine.c
+++ b/tools/test/perform/sio_engine.c
@@ -1268,8 +1268,7 @@ done:
* 'temp' in the code below, but early (4.4.7, at least) gcc only
* allows diagnostic pragmas to be toggled outside of functions.
*/
-#pragma GCC diagnostic push
-#pragma GCC diagnostic ignored "-Wformat-nonliteral"
+H5_GCC_DIAG_OFF(format-nonliteral)
static void
do_cleanupfile(iotype iot, char *filename)
{
@@ -1331,5 +1330,5 @@ do_cleanupfile(iotype iot, char *filename)
}
}
}
-#pragma GCC diagnostic pop
+H5_GCC_DIAG_ON(format-nonliteral)