summaryrefslogtreecommitdiffstats
path: root/src/framework/ipc/ps/nsfw_soft_param.c
diff options
context:
space:
mode:
authoryalei wang <wylandrea@gmail.com>2018-08-14 06:58:19 +0000
committerGerrit Code Review <gerrit@fd.io>2018-08-14 06:58:19 +0000
commit55c3082a6a7a3982de66d0a97b1519105871f855 (patch)
treee7c76d51cf2df0ea42909f3bc7d84ebb2ced441d /src/framework/ipc/ps/nsfw_soft_param.c
parent9a4f5e18e7ae40e11d9f8a946182871b735a260e (diff)
parent7dc65518819f2b453fd2837e92c115592d8832ec (diff)
Merge "Feat : LWIP integration part1"
Diffstat (limited to 'src/framework/ipc/ps/nsfw_soft_param.c')
-rw-r--r--src/framework/ipc/ps/nsfw_soft_param.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/framework/ipc/ps/nsfw_soft_param.c b/src/framework/ipc/ps/nsfw_soft_param.c
index d458040..91d7598 100644
--- a/src/framework/ipc/ps/nsfw_soft_param.c
+++ b/src/framework/ipc/ps/nsfw_soft_param.c
@@ -97,13 +97,15 @@ nsfw_soft_set_int (u32 param, char *buf, u32 buf_len)
nsfw_set_soft_item *int_item = &g_soft_int_cfg[param];
if (NULL == int_item->data)
{
- NSFW_LOGERR ("data err]buf=%s,param=%u,min=%llu,max=%llu", buf, param, int_item->min, int_item->max); //[DTS2017112402499][2017-11-24][z00316269] Issue #40, fix type dismatch
+ NSFW_LOGERR ("data err]buf=%s,param=%u,min=%llu,max=%llu", buf, param,
+ int_item->min, int_item->max);
return FALSE;
}
if (buf_value < int_item->min || buf_value > int_item->max)
{
- NSFW_LOGERR ("argv err]buf=%s,param=%u,min=%llu,max=%llu", buf, param, int_item->min, int_item->max); //[DTS2017112402499][2017-11-24][z00316269] Issue #40, fix type dismatch
+ NSFW_LOGERR ("argv err]buf=%s,param=%u,min=%llu,max=%llu", buf, param,
+ int_item->min, int_item->max);
return FALSE;
}