From c6179c24ed75a11c14dc4b1fffcde58be0bda785 Mon Sep 17 00:00:00 2001 From: Jinwon Kim <44044845+jinwon0325kim@users.noreply.github.com> Date: Wed, 2 Nov 2022 16:16:53 +0900 Subject: [PATCH] [netif] fix bug in print statement with no corresponding argument (#8353) --- src/posix/platform/netif.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/posix/platform/netif.cpp b/src/posix/platform/netif.cpp index e04322866..fbfa8c172 100644 --- a/src/posix/platform/netif.cpp +++ b/src/posix/platform/netif.cpp @@ -852,7 +852,7 @@ static void UpdateExternalRoutes(otInstance *aInstance) else { sAddedExternalRoutes[sAddedExternalRoutesNum++] = config.mPrefix; - otLogWarnPlat("[netif] Successfully added an external route %s in kernel: %s", prefixString); + otLogWarnPlat("[netif] Successfully added an external route %s in kernel", prefixString); } } exit: