From f456c65d05b922e655c51050b568cac2618761c7 Mon Sep 17 00:00:00 2001 From: Joseph Marrero Corchado Date: Wed, 5 Aug 2026 00:06:48 -0400 Subject: [PATCH] style: Fix clang-format violation in tests/test-bsdiff.c Collapse short array initializer to a single line to satisfy clang-format. --- tests/test-bsdiff.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tests/test-bsdiff.c b/tests/test-bsdiff.c index 8d242d86..88c40e8c 100644 --- a/tests/test-bsdiff.c +++ b/tests/test-bsdiff.c @@ -137,12 +137,7 @@ test_bspatch_content_size_guard (void) } /* Values that must be accepted by the guard */ - const guint64 accept_values[] = { - 0, - 1, - 4096, - (guint64)1024 * 1024 * 1024, /* 1 GiB */ - }; + const guint64 accept_values[] = { 0, 1, 4096, (guint64)1024 * 1024 * 1024 /* 1 GiB */ }; for (gsize i = 0; i < G_N_ELEMENTS (accept_values); i++) { -- 2.39.5