From b5ba09664e1a249773aae83fe873dfdffeaf2ca6 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Fri, 13 Dec 2024 20:15:45 +1100 Subject: [PATCH] Tools: remove superfluous linefeed from panic strings panic adds this within the HAL layer. --- Tools/CPUInfo/CPUInfo.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Tools/CPUInfo/CPUInfo.cpp b/Tools/CPUInfo/CPUInfo.cpp index cf3e43b1b0210..e598c9772444d 100644 --- a/Tools/CPUInfo/CPUInfo.cpp +++ b/Tools/CPUInfo/CPUInfo.cpp @@ -212,13 +212,13 @@ static void test_div1000(void) for (uint32_t i=0; i<2000000; i++) { uint64_t v = 0; if (!hal.util->get_random_vals((uint8_t*)&v, sizeof(v))) { - AP_HAL::panic("ERROR: div1000 no random\n"); + AP_HAL::panic("ERROR: div1000 no random"); break; } uint64_t v1 = v / 1000ULL; uint64_t v2 = uint64_div1000(v); if (v1 != v2) { - AP_HAL::panic("ERROR: 0x%llx v1=0x%llx v2=0x%llx\n", + AP_HAL::panic("ERROR: 0x%llx v1=0x%llx v2=0x%llx", (unsigned long long)v, (unsigned long long)v1, (unsigned long long)v2); return; } @@ -228,7 +228,7 @@ static void test_div1000(void) for (uint32_t i=0; i<2000000; i++) { uint64_t v = 0; if (!hal.util->get_random_vals((uint8_t*)&v, sizeof(v))) { - AP_HAL::panic("ERROR: div1000 no random\n"); + AP_HAL::panic("ERROR: div1000 no random"); break; } chSysLock(); @@ -236,7 +236,7 @@ static void test_div1000(void) uint64_t v2 = uint64_div1000(v); chSysUnlock(); if (v1 != v2) { - AP_HAL::panic("ERROR: 0x%llx v1=0x%llx v2=0x%llx\n", + AP_HAL::panic("ERROR: 0x%llx v1=0x%llx v2=0x%llx", (unsigned long long)v, (unsigned long long)v1, (unsigned long long)v2); return; }