summaryrefslogtreecommitdiffstats
path: root/test/h5test.c
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2020-02-03 22:23:06 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-05-20 14:31:54 (GMT)
commit364a27714358e0f28d92f2f0efed85ab64a9cc05 (patch)
tree601ac728c9ff2f13ed7482c8893c946c3eba41a6 /test/h5test.c
parent5178dd70ec699eb855ddedb81fc144f48c612520 (diff)
downloadhdf5-364a27714358e0f28d92f2f0efed85ab64a9cc05.zip
hdf5-364a27714358e0f28d92f2f0efed85ab64a9cc05.tar.gz
hdf5-364a27714358e0f28d92f2f0efed85ab64a9cc05.tar.bz2
Change thread IDs to uint64_t from unsigned long, per Quincey's suggestion.
Fix a typo in the H5TS_thread_init() comment and reword some ID properties.
Diffstat (limited to 'test/h5test.c')
-rw-r--r--test/h5test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/h5test.c b/test/h5test.c
index 037e114..ab57370 100644
--- a/test/h5test.c
+++ b/test/h5test.c
@@ -1184,7 +1184,7 @@ h5_show_hostname(void)
HDprintf("thread 0.");
}
#else
- HDprintf("thread %lu.", H5TS_thread_id());
+ HDprintf("thread %" PRIu64 ".", H5TS_thread_id());
#endif
#ifdef H5_HAVE_WIN32_API