From 34afbd6ca21d2b960573d787e6eae46fa86b200e Mon Sep 17 00:00:00 2001 From: skal Date: Thu, 5 Mar 2026 22:55:56 +0100 Subject: style: run clang-format to adhere to coding style --- src/tests/audio/test_wav_dump.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/tests/audio/test_wav_dump.cc') diff --git a/src/tests/audio/test_wav_dump.cc b/src/tests/audio/test_wav_dump.cc index bfb9d9a..4d9b7ba 100644 --- a/src/tests/audio/test_wav_dump.cc +++ b/src/tests/audio/test_wav_dump.cc @@ -58,7 +58,8 @@ void test_wav_format_matches_live_audio() { for (float t = 0.0f; t < duration; t += update_dt) { for (int i = 0; i < samples_per_update; i += 2) { - const float phase = 2.0f * 3.14159265f * freq * (float)sample_index / sample_rate; + const float phase = + 2.0f * 3.14159265f * freq * (float)sample_index / sample_rate; const float s = 0.5f * sinf(phase); chunk_buffer[i] = s; // L chunk_buffer[i + 1] = s; // R -- cgit v1.2.3