From 5575f0631708e3d2969654459a10ecaeaa3fe50f Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 26 May 2022 13:24:47 -0400 Subject: Suppress new warnings in clang-tidy 13 --- src/sratom.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/sratom.c b/src/sratom.c index 53fa017..e4d306b 100644 --- a/src/sratom.c +++ b/src/sratom.c @@ -334,11 +334,11 @@ sratom_write(Sratom* sratom, new_node = true; datatype = serd_node_from_string(SERD_URI, USTR(LV2_MIDI__MidiEvent)); - const size_t len = size * 2; + const size_t len = size * 2ul; uint8_t* const str = (uint8_t*)calloc(len + 1, 1); for (uint32_t i = 0; i < size; ++i) { - snprintf((char*)str + (2 * i), - len - (2 * i) + 1, + snprintf((char*)str + (2ul * i), + len - (2ul * i) + 1ul, "%02X", (unsigned)*((const uint8_t*)body + i)); } -- cgit v1.2.1