diff options
Diffstat (limited to 'utils')
-rw-r--r-- | utils/lv2bench.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/lv2bench.c b/utils/lv2bench.c index c355727..26f52d1 100644 --- a/utils/lv2bench.c +++ b/utils/lv2bench.c @@ -79,7 +79,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 * 2, sizeof(float)); + float* const buf = (float*)calloc(block_size * 2ul, sizeof(float)); float* const in = buf; float* const out = buf + block_size; if (!buf) { |