style: clang-format

This commit is contained in:
2025-11-25 23:31:28 +01:00
parent 0fa14e8c37
commit 900254f023
3 changed files with 5 additions and 3 deletions

View File

@@ -33,7 +33,8 @@ static void buffer_key_init(void) {
/* Returns the next power of two of a number */
static size_t next_power_two(size_t len) {
if (len == 0) return 1;
if (len == 0)
return 1;
size_t p = 1;
while (p < len) {