From: Youngjae Shin Date: Wed, 13 Sep 2017 02:15:58 +0000 (+0900) Subject: fix coding rule error X-Git-Tag: submit/tizen/20170915.023525~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=738263ba2493e128b711c0deabe1013a37f3b0fe;p=platform%2Fcore%2Fappfw%2Fmessage-port.git fix coding rule error Change-Id: Ic8d7f87d2c30c81e276c5d5f753e49a2a654f732 Signed-off-by: Youngjae Shin Signed-off-by: jusung son --- diff --git a/include/message_port.h b/include/message_port.h index bc2def4..0d82f83 100755 --- a/include/message_port.h +++ b/include/message_port.h @@ -120,9 +120,9 @@ typedef void (*message_port_trusted_message_cb)(int trusted_local_port_id, const * @see message_port_remove_registration_event_cb() */ typedef void (*message_port_registration_event_cb)(const char *remote_app_id, - const char *remote_port, - bool trusted_remote_port, - void *user_data); + const char *remote_port, + bool trusted_remote_port, + void *user_data); /** @@ -394,11 +394,11 @@ EXPORT_API int message_port_send_trusted_message_with_local_port(const char *rem * @see message_port_remove_registration_event_cb() */ EXPORT_API int message_port_add_registered_cb(const char *remote_app_id, - const char *remote_port, - bool trusted_remote_port, - message_port_registration_event_cb registered_cb, - void *user_data, - int *watcher_id); + const char *remote_port, + bool trusted_remote_port, + message_port_registration_event_cb registered_cb, + void *user_data, + int *watcher_id); /** * @brief Adds a callback called when a remote port is unregistered. @@ -425,11 +425,11 @@ EXPORT_API int message_port_add_registered_cb(const char *remote_app_id, * @see message_port_remove_registration_event_cb() */ EXPORT_API int message_port_add_unregistered_cb(const char *remote_app_id, - const char *remote_port, - bool trusted_remote_port, - message_port_registration_event_cb unregistered_cb, - void *user_data, - int *watcher_id); + const char *remote_port, + bool trusted_remote_port, + message_port_registration_event_cb unregistered_cb, + void *user_data, + int *watcher_id); /**