diff options
author | David Robillard <d@drobilla.net> | 2022-12-10 13:47:59 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-12-10 19:04:45 -0500 |
commit | 1988db57ca8003a406e08855ab66d1891fc5ce6b (patch) | |
tree | 0874e40b08073fdb696fe0987ff47ff8cdb7c6c0 /tools | |
parent | e0281d51ab8c6ca05a8b467901e5bd96d829bb56 (diff) | |
download | lilv-1988db57ca8003a406e08855ab66d1891fc5ce6b.tar.gz lilv-1988db57ca8003a406e08855ab66d1891fc5ce6b.tar.bz2 lilv-1988db57ca8003a406e08855ab66d1891fc5ce6b.zip |
Use uppercase integer literal suffixes
Diffstat (limited to 'tools')
-rw-r--r-- | tools/.clang-tidy | 1 | ||||
-rw-r--r-- | tools/lv2bench.c | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/tools/.clang-tidy b/tools/.clang-tidy index c642a20..b258816 100644 --- a/tools/.clang-tidy +++ b/tools/.clang-tidy @@ -3,7 +3,6 @@ Checks: > -*-magic-numbers, - -*-uppercase-literal-suffix, -android-cloexec-fopen, -bugprone-easily-swappable-parameters, -bugprone-narrowing-conversions, diff --git a/tools/lv2bench.c b/tools/lv2bench.c index 7a23025..4b7eef7 100644 --- a/tools/lv2bench.c +++ b/tools/lv2bench.c @@ -64,7 +64,7 @@ bench(const LilvPlugin* p, uint32_t sample_count, uint32_t block_size) LV2_Feature unmap_feature = {LV2_URID_UNMAP_URI, &unmap}; const LV2_Feature* features[] = {&map_feature, &unmap_feature, NULL}; - float* const buf = (float*)calloc(block_size * 2ul, sizeof(float)); + float* const buf = (float*)calloc(block_size * 2UL, sizeof(float)); float* const in = buf; float* const out = buf + block_size; if (!buf) { |