From be2da7b3e987839970cab8e1da0c827f485b1661 Mon Sep 17 00:00:00 2001 From: Frank <91616163+softhack007@users.noreply.github.com> Date: Fri, 2 Jun 2023 01:48:55 +0200 Subject: [PATCH] minor edit: tab inserted --- wled00/wled00.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wled00/wled00.ino b/wled00/wled00.ino index 3e748356..496864ec 100644 --- a/wled00/wled00.ino +++ b/wled00/wled00.ino @@ -32,7 +32,7 @@ void heap_caps_alloc_failed_hook(size_t requested_size, uint32_t caps, const cha float fragmentation = 100.0f; if ((largest_free > 1) && (total_free > largest_free)) fragmentation = 100.f * (1.0f - (float(largest_free) / float(total_free)) ); - Serial.print("; availeable: " + String(total_free)); + Serial.print("; \t availeable: " + String(total_free)); Serial.print(" (frag "); Serial.print(fragmentation, 2); Serial.println("%)."); if (!heap_caps_check_integrity_all(false)) {