From 8abd908497105c8c8b366a30225ab994ae23db7d Mon Sep 17 00:00:00 2001 From: Shylie Date: Tue, 19 Mar 2024 16:03:08 -0400 Subject: [PATCH] Fix incorrect auto-format --- source/terml.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/terml.cpp b/source/terml.cpp index 10e06ce..b644d68 100644 --- a/source/terml.cpp +++ b/source/terml.cpp @@ -81,11 +81,11 @@ namespace { if (cell.foreground != last.foreground) { - printf(FG(% d, % d, % d), (cell.foreground & 0xFF0000) >> 16, (cell.foreground & 0xFF00) >> 8, cell.foreground & 0xFF); + printf(FG(%d, %d, %d), (cell.foreground & 0xFF0000) >> 16, (cell.foreground & 0xFF00) >> 8, cell.foreground & 0xFF); } if (cell.background != last.background) { - printf(BG(% d, % d, % d), (cell.background & 0xFF0000) >> 16, (cell.background & 0xFF00) >> 8, cell.background & 0xFF); + printf(BG(%d, %d, %d), (cell.background & 0xFF0000) >> 16, (cell.background & 0xFF00) >> 8, cell.background & 0xFF); } print_cell_impl(cell);