Merge changes from develop

Comments and whitespace
Skip file-locking and cache changes
This commit is contained in:
Allen Byrne
2020-10-08 09:40:18 -05:00
parent 29874423bf
commit cdbe6b78f0
195 changed files with 12508 additions and 12599 deletions

View File

@@ -322,9 +322,9 @@ void
print_found(hsize_t nfound)
{
if (g_Parallel)
parallel_print("%" H5_PRINTF_LL_WIDTH "u differences found\n", (unsigned long long)nfound);
parallel_print("%" PRIuHSIZE " differences found\n", nfound);
else
HDfprintf(stdout, "%Hu differences found\n", nfound);
HDfprintf(stdout, "%" PRIuHSIZE " differences found\n", nfound);
}
/*-----------------------------------------------------------------