From 49e14832862ebbedb2554af379d5a80503b3433b Mon Sep 17 00:00:00 2001 From: GiWoong Kim Date: Thu, 8 May 2014 19:57:57 +0900 Subject: [PATCH] ecs: modified command name gesture -> TGesture Change-Id: I77edc21d497898d02b50f070d175e0b1f938c4c4 Signed-off-by: GiWoong Kim --- tizen/src/ecs/ecs_msg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tizen/src/ecs/ecs_msg.c b/tizen/src/ecs/ecs_msg.c index 791296f941..67580ad263 100644 --- a/tizen/src/ecs/ecs_msg.c +++ b/tizen/src/ecs/ecs_msg.c @@ -502,7 +502,7 @@ bool msgproc_device_req(ECS_Client* ccli, ECS__DeviceReq* msg) do_host_kbd_enable(is_on); notify_host_kbd_state(is_on); } - } else if (!strncmp(cmd, "gesture", strlen("gesture"))) { + } else if (!strncmp(cmd, "TGesture", strlen("TGesture"))) { /* release multi-touch */ #ifndef CONFIG_USE_SHM if (get_multi_touch_enable() != 0) { @@ -513,7 +513,7 @@ bool msgproc_device_req(ECS_Client* ccli, ECS__DeviceReq* msg) #endif if (data == NULL) { - ERR("gesture data is NULL\n"); + ERR("touch gesture data is NULL\n"); return false; } -- 2.34.1