From c404f25dcaa4e622a0fe9179bc79393a468093d1 Mon Sep 17 00:00:00 2001 From: zheng_wenlong Date: Thu, 4 Apr 2019 09:03:27 +0900 Subject: Revert "Change steering to systemd service for ces2019" This reverts commit 1fed2c5a38fed8bc91bb6b8a08982303eb9c2e82. Change-Id: Id83b437eef556b8d3fcd95503b9ff5b4d94bc7a5 Signed-off-by: zheng_wenlong --- src/prop_search.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/prop_search.c') diff --git a/src/prop_search.c b/src/prop_search.c index fce139e..f88de8a 100644 --- a/src/prop_search.c +++ b/src/prop_search.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017-2019 TOYOTA MOTOR CORPORATION + * Copyright (c) 2017 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 #include -#include "wheel-service.h" +#include "af-steering-wheel-binding.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) { - DBG_ERROR("add property failed: not enogh memory?"); + ERRMSG("add property failed: not enogh memory?"); return -1; } if (nProperties >= SUPPORT_PROPERTY_LIMIT) { - DBG_ERROR("Reach properties limit"); + ERRMSG("Reach properties limit"); return -1; } support_property_list[nProperties] = prop_info->name; -- cgit 1.2.3-korg