diff options
author | Sean McBride <sean@rogue-research.com> | 2022-01-28 14:31:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-28 14:31:26 (GMT) |
commit | 44de59b642c4d5ccf505a1072d10b63dc9fe0628 (patch) | |
tree | 619d965121f5f3f1f8c87f1e73267b233a234858 /tools | |
parent | 5fb634ca26ce165bb09c5c920f345e546251876c (diff) | |
download | hdf5-44de59b642c4d5ccf505a1072d10b63dc9fe0628.zip hdf5-44de59b642c4d5ccf505a1072d10b63dc9fe0628.tar.gz hdf5-44de59b642c4d5ccf505a1072d10b63dc9fe0628.tar.bz2 |
Used clang-tidy to change all floating point f suffixes to F (#1359)
Diffstat (limited to 'tools')
-rw-r--r-- | tools/test/h5repack/h5repackgentest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/test/h5repack/h5repackgentest.c b/tools/test/h5repack/h5repackgentest.c index b026cc0..c025891 100644 --- a/tools/test/h5repack/h5repackgentest.c +++ b/tools/test/h5repack/h5repackgentest.c @@ -307,7 +307,7 @@ generate_f32le(hbool_t external) /* Generate values */ for (i = 0, k = 0, n = 0; (hsize_t)i < dims[0]; i++) { for (j = 0; (hsize_t)j < dims[1]; j++, k++, n++) { - wdata[k] = n * 801.1f * ((k % 5 == 1) ? (-1) : (1)); + wdata[k] = n * 801.1F * ((k % 5 == 1) ? (-1) : (1)); } } |