summaryrefslogtreecommitdiffstats
path: root/tools/test/h5jam/tellub.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-28 15:31:32 (GMT)
committerGitHub <noreply@github.com>2023-06-28 15:31:32 (GMT)
commit187ea8a9ae1405b5b46ca47a32fb1fb9e2686c98 (patch)
treebaffa167d0796786241aef6b0ce76d4adec3b66e /tools/test/h5jam/tellub.c
parent7a44581a84778a1346a2fd5b6cca7d9db905a321 (diff)
downloadhdf5-187ea8a9ae1405b5b46ca47a32fb1fb9e2686c98.zip
hdf5-187ea8a9ae1405b5b46ca47a32fb1fb9e2686c98.tar.gz
hdf5-187ea8a9ae1405b5b46ca47a32fb1fb9e2686c98.tar.bz2
Rename HD(f)printf() to (f)printf() (#3194)
Diffstat (limited to 'tools/test/h5jam/tellub.c')
-rw-r--r--tools/test/h5jam/tellub.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/test/h5jam/tellub.c b/tools/test/h5jam/tellub.c
index d0e717a..ba0457b 100644
--- a/tools/test/h5jam/tellub.c
+++ b/tools/test/h5jam/tellub.c
@@ -38,10 +38,10 @@ static void
usage(const char *prog)
{
HDfflush(stdout);
- HDfprintf(stdout, "usage: %s h5_file\n", prog);
- HDfprintf(stdout, " Check that h5_fil is HDF5 file and print size of user block \n");
- HDfprintf(stdout, " %s -h\n", prog);
- HDfprintf(stdout, " Print a usage message and exit\n");
+ fprintf(stdout, "usage: %s h5_file\n", prog);
+ fprintf(stdout, " Check that h5_fil is HDF5 file and print size of user block \n");
+ fprintf(stdout, " %s -h\n", prog);
+ fprintf(stdout, " Print a usage message and exit\n");
} /* end usage() */
/*-------------------------------------------------------------------------
@@ -156,7 +156,7 @@ main(int argc, char *argv[])
goto done;
}
- HDprintf("%ld\n", (long)usize);
+ printf("%ld\n", (long)usize);
done:
H5Pclose(plist);