mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-12-27 08:01:04 +08:00
Correct a couple of format strings.
This commit is contained in:
parent
23bbe96c75
commit
c6fcec46c9
@ -2457,7 +2457,8 @@ test_vanishing_datasets(void)
|
|||||||
TEST_ERROR;
|
TEST_ERROR;
|
||||||
}
|
}
|
||||||
if (group_info.nlinks > 0) {
|
if (group_info.nlinks > 0) {
|
||||||
HDfprintf(stderr, "links in rw file: %d\n", group_info.nlinks);
|
HDfprintf(stderr, "links in rw file: %" PRIuHSIZE "\n",
|
||||||
|
group_info.nlinks);
|
||||||
HDfflush(stderr);
|
HDfflush(stderr);
|
||||||
TEST_ERROR;
|
TEST_ERROR;
|
||||||
}
|
}
|
||||||
@ -2472,7 +2473,8 @@ test_vanishing_datasets(void)
|
|||||||
TEST_ERROR;
|
TEST_ERROR;
|
||||||
}
|
}
|
||||||
if (group_info.nlinks > 0) {
|
if (group_info.nlinks > 0) {
|
||||||
HDfprintf(stderr, "links in wo file: %d\n", group_info.nlinks);
|
HDfprintf(stderr, "links in wo file: %" PRIuHSIZE "\n",
|
||||||
|
group_info.nlinks);
|
||||||
HDfflush(stderr);
|
HDfflush(stderr);
|
||||||
TEST_ERROR;
|
TEST_ERROR;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user