summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/.clang-tidy1
-rw-r--r--tools/lv2bench.c2
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) {