From c434e2467b721b31e1531122ce14de90eca5f0da Mon Sep 17 00:00:00 2001 From: Sung-Jin Park Date: Sun, 25 Jul 2021 03:29:20 +0900 Subject: [PATCH] mmi-client: fixed indentation Change-Id: I8f19d5acba8e98c812f1edb20dec009a86a16fc8 Signed-off-by: Sung-Jin Park --- src/mmi-client.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/mmi-client.c b/src/mmi-client.c index 1f00e73..a42968a 100644 --- a/src/mmi-client.c +++ b/src/mmi-client.c @@ -73,19 +73,19 @@ client_manager_add_client(const char* sender) return NULL; mc = calloc(1, sizeof(mmi_client)); - if (!mc) - { - LOGE("Failed to allocate memory for client !\n"); - return NULL; - } + if (!mc) + { + LOGE("Failed to allocate memory for client !\n"); + return NULL; + } mc->sender = strdup(sender); if (!eina_hash_add(_client_hash, sender, mc)) - { - LOGE("Failed to add client info to client hash !\n"); - goto err; - } + { + LOGE("Failed to add client info to client hash !\n"); + goto err; + } return mc; err: @@ -228,10 +228,10 @@ client_manager_get_client_has_focus(mmi_client *client) const char * client_manager_get_client_sender(mmi_client *client) { - if (!client) - return NULL; + if (!client) + return NULL; - return client->sender; + return client->sender; } static void -- 2.7.4