summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2019-08-28 20:18:02 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2019-08-28 20:18:02 (GMT)
commit37532a36883806dcebae2c9870424b99dc2eaf5c (patch)
treea47802c4e0d1ab4927ddf56a9676f35ffeafa831 /test
parentfb8296371cf45654a9252ed01b635519205da3de (diff)
parent1efd23ff02b9bc1a3d303d53395245d1366588be (diff)
downloadhdf5-37532a36883806dcebae2c9870424b99dc2eaf5c.zip
hdf5-37532a36883806dcebae2c9870424b99dc2eaf5c.tar.gz
hdf5-37532a36883806dcebae2c9870424b99dc2eaf5c.tar.bz2
Merge pull request #1904 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to develop
* commit '1efd23ff02b9bc1a3d303d53395245d1366588be': Whitespace and HD prefix changes fix get gethostname for windows OESS-29 Fix HD prefix in perform and enable test compile HDFFV-10876 h5dump OPAQUE size should be optional
Diffstat (limited to 'test')
-rw-r--r--test/h5test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/h5test.c b/test/h5test.c
index 7cb5345..dd8d906 100644
--- a/test/h5test.c
+++ b/test/h5test.c
@@ -1193,7 +1193,7 @@ h5_show_hostname(void)
#endif
#ifdef H5_HAVE_GETHOSTNAME
- if (gethostname(hostname, (size_t)80) < 0)
+ if (HDgethostname(hostname, (size_t)80) < 0)
HDprintf(" gethostname failed\n");
else
HDprintf(" hostname=%s\n", hostname);