From 3faaad9fe1f11cfe5699c6720c897bfddc7cf49a Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Thu, 15 May 2025 00:18:27 -0600 Subject: Begone with the printf variants of the log functions --- cmd/sbc_harness/tusb_log.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'cmd/sbc_harness/tusb_log.c') diff --git a/cmd/sbc_harness/tusb_log.c b/cmd/sbc_harness/tusb_log.c index fe2c688..4629c04 100644 --- a/cmd/sbc_harness/tusb_log.c +++ b/cmd/sbc_harness/tusb_log.c @@ -9,7 +9,5 @@ void _libmisc_tu_mess_failed(const char *expr, const char *file, unsigned int line, const char *func) { - log_errorf("%s:%u:%s(): assertion \"%s\" failed", - file, line, func, - expr); + log_errorln(file, ":", line, ":", func, "(): assertion ", (qstr, expr), " failed"); } -- cgit v1.2.3-2-g168b