Remove compile warning messages 43/49443/1 accepted/tizen/mobile/20151013.230308 accepted/tizen/tv/20151013.230320 accepted/tizen/wearable/20151013.230341 submit/tizen/20151013.084934 tizen_3.0.m2.a1_mobile_release tizen_3.0.m2.a1_tv_release
authorSuchang Woo <suchang.woo@samsung.com>
Tue, 13 Oct 2015 08:40:51 +0000 (17:40 +0900)
committerSuchang Woo <suchang.woo@samsung.com>
Tue, 13 Oct 2015 08:44:16 +0000 (17:44 +0900)
* missing braces around initializer
* unused variable

Signed-off-by: Suchang Woo <suchang.woo@samsung.com>
Change-Id: I368918fa2525afb0c0d23c969ca4506d328e566a

src/plugins/default/tlm-auth-plugin-default.c
src/utils/tlm-launcher.c

index 153b035..c1853be 100644 (file)
@@ -169,11 +169,12 @@ tlm_auth_plugin_default_class_init (TlmAuthPluginDefaultClass *kls)
 static void
 tlm_auth_plugin_default_init (TlmAuthPluginDefault *self)
 {
-    struct sigaction sa = { 0 };
+    struct sigaction sa = {
+        .sa_handler = _on_signal_cb,
+    };
 
     g_weak_ref_init (&__self, self);
 
-    sa.sa_handler = _on_signal_cb;
     if (sigaction(SIGUSR1, &sa, NULL) != 0) {
         WARN ("assert(sigaction()) : %s", strerror(errno));
     }
index dd9bf12..a27295f 100644 (file)
@@ -139,7 +139,6 @@ static void _tlm_launcher_process (TlmLauncher *l)
 {
   char str[1024];
   gchar **argv = NULL;
-  gint wait = 0;
   pid_t child_pid = 0;
 
   if (!l || !l->fp) return;