From e6a399d4fb8acd5a36a1700301db3b9519013b0e Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Thu, 16 Mar 2023 16:15:31 -0400 Subject: [PATCH] no fprintf's!; --- tests/p25/HDU_RS_Test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/p25/HDU_RS_Test.cpp b/tests/p25/HDU_RS_Test.cpp index 5ca37daa..afcc5a66 100644 --- a/tests/p25/HDU_RS_Test.cpp +++ b/tests/p25/HDU_RS_Test.cpp @@ -79,7 +79,7 @@ TEST_CASE("HDU", "[Reed-Soloman 36,20,17 Test]") { try { bool ret = m_rs.decode362017(rs); if (!ret) { - fprintf(stdout, "LC::decodeHDU(), failed to decode RS (36,20,17) FEC\n"); + ::LogDebug("T", "LC::decodeHDU(), failed to decode RS (36,20,17) FEC\n"); failed = true; goto cleanup; }