We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3776a66 commit b21c848Copy full SHA for b21c848
test/dsets.c
@@ -16893,21 +16893,17 @@ test_vds_shared_strings(hid_t fapl)
16893
*/
16894
char file_name[64];
16895
char dset_name[64];
16896
- int shared_file_count = 0;
16897
- int shared_dset_count = 0;
16898
16899
for (int i = 0; i < NUM_MAPPINGS_MANY; i++) {
16900
if (i % 10 == 0) {
16901
strcpy(file_name, "shared_file.h5");
16902
- shared_file_count++;
16903
}
16904
else {
16905
snprintf(file_name, sizeof(file_name), "file_%d.h5", i);
16906
16907
16908
if (i % 5 == 0) {
16909
strcpy(dset_name, "/shared_dataset");
16910
- shared_dset_count++;
16911
16912
16913
snprintf(dset_name, sizeof(dset_name), "/dataset_%d", i);
0 commit comments