fix coding rule error 95/149695/5
authorYoungjae Shin <yj99.shin@samsung.com>
Wed, 13 Sep 2017 02:15:58 +0000 (11:15 +0900)
committerSemun Lee <semun.lee@samsung.com>
Thu, 14 Sep 2017 00:16:52 +0000 (09:16 +0900)
Change-Id: Ic8d7f87d2c30c81e276c5d5f753e49a2a654f732
Signed-off-by: Youngjae Shin <yj99.shin@samsung.com>
Signed-off-by: jusung son <jusung07.son@samsung.com>
include/message_port.h

index bc2def4..0d82f83 100755 (executable)
@@ -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);
 
 
 /**