summaryrefslogtreecommitdiffstats
path: root/src/prop_search.c
diff options
context:
space:
mode:
authorzheng_wenlong <wenlong_zheng@nexty-ele.com>2019-02-06 17:12:28 +0900
committerzheng_wenlong <wenlong_zheng@nexty-ele.com>2019-02-06 17:13:49 +0900
commit1fed2c5a38fed8bc91bb6b8a08982303eb9c2e82 (patch)
tree502b5c63a0570d78863311fbd930f1c96b8a2990 /src/prop_search.c
parenta98fcb4b99e5a7b14b671e6014ea0b1cc1ea199d (diff)
Change steering to systemd service for ces2019halibut_7.90.0halibut/7.90.07.90.0
Change steering to systemd service for ces2019 Change-Id: I319fb56a302f4f980b43a1b90dee1f36820355fb Signed-off-by: zheng_wenlong <wenlong_zheng@nexty-ele.com>
Diffstat (limited to 'src/prop_search.c')
-rw-r--r--src/prop_search.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/prop_search.c b/src/prop_search.c
index f88de8a..fce139e 100644
--- a/src/prop_search.c
+++ b/src/prop_search.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017 TOYOTA MOTOR CORPORATION
+ * Copyright (c) 2017-2019 TOYOTA MOTOR CORPORATION
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -21,7 +21,7 @@
#include <search.h>
#include <string.h>
-#include "af-steering-wheel-binding.h"
+#include "wheel-service.h"
#include "prop_search.h"
#define SUPPORT_PROPERTY_LIMIT 512
@@ -47,12 +47,12 @@ static int addProperty_dict(struct prop_info_t *prop_info)
v = tsearch((void *)prop_info, &property_root, property_compare);
if (v == NULL)
{
- ERRMSG("add property failed: not enogh memory?");
+ DBG_ERROR("add property failed: not enogh memory?");
return -1;
}
if (nProperties >= SUPPORT_PROPERTY_LIMIT)
{
- ERRMSG("Reach properties limit");
+ DBG_ERROR("Reach properties limit");
return -1;
}
support_property_list[nProperties] = prop_info->name;