From 6a927d0eff7fbc0390690f0541506e5665bf3310 Mon Sep 17 00:00:00 2001 From: Tom Early Date: Thu, 9 Dec 2021 12:36:01 -0700 Subject: [PATCH] log alignment --- Controller.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Controller.cpp b/Controller.cpp index e814210..eb7ac08 100644 --- a/Controller.cpp +++ b/Controller.cpp @@ -425,14 +425,14 @@ void CController::Dump(const std::shared_ptr p, const std::st } if (p->DMRIsSet()) { - std::cout << "DMR Data: "; + std::cout << "DMR Data: "; for (unsigned int i=0; i<9; i++) std::cout << std::setw(2) << std::setfill('0') << unsigned(*(p->GetDMRData()+i)); std::cout << std::endl; } if (p->M17IsSet()) { - std::cout << "M17 Data: "; + std::cout << "M17 Data: "; for (unsigned int i=0; i<16; i++) std::cout << std::setw(2) << std::setfill('0') << unsigned(*(p->GetM17Data()+i)); std::cout << std::endl;