From 0eceaed7fb6618c4592d0ea9271a7be6ba919200 Mon Sep 17 00:00:00 2001 From: "jiehwan.park" Date: Fri, 7 Dec 2018 16:52:43 +0900 Subject: [PATCH] fix dlog format check error Change-Id: I6bc844b58ea03145007d4e3ccc167f8f70685d5f Signed-off-by: jiehwan.park --- src/input_file.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/input_file.c b/src/input_file.c index 0f78afd..bb12458 100755 --- a/src/input_file.c +++ b/src/input_file.c @@ -206,15 +206,15 @@ static void print_config_network_static_info(sa_network_static_s * staticInfo) { if (staticInfo != NULL) { if (strlen(staticInfo->ipAddress) > 0) - _D("static::ipAddress[%s]"); + _D("static::ipAddress[%s]", staticInfo->ipAddress); if (strlen(staticInfo->netmask) > 0) - _D("static::netmask[%s]"); + _D("static::netmask[%s]", staticInfo->netmask); if (strlen(staticInfo->defaultGateway) > 0) - _D("static::defaultGateway[%s]"); + _D("static::defaultGateway[%s]", staticInfo->defaultGateway); if (strlen(staticInfo->primaryDnsServer) > 0) - _D("static::primaryDnsServer[%s]"); + _D("static::primaryDnsServer[%s]", staticInfo->primaryDnsServer); if (strlen(staticInfo->secondaryDnsServer) > 0) - _D("static::secondaryDnsServer[%s]"); + _D("static::secondaryDnsServer[%s]", staticInfo->secondaryDnsServer); } } -- 2.7.4