[Tizen] Change the return type of the init function 71/148771/2 accepted/tizen/unified/20170911.155722 accepted/tizen/unified/20170913.070957 submit/tizen/20170908.031412 submit/tizen/20170912.010434
authorHwankyu Jhun <h.jhun@samsung.com>
Sun, 10 Sep 2017 07:00:46 +0000 (16:00 +0900)
committerMinho Sun <minho.sun@samsung.com>
Mon, 11 Sep 2017 04:42:22 +0000 (04:42 +0000)
Change-Id: Ib0541067345149e18d5e7f79f6d47c23843530e1
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
adaptors/tizen/framework-tizen.cpp

index e9c3ac1..044df8e 100644 (file)
@@ -348,7 +348,7 @@ struct Framework::Impl
     return 0;
   }
 
-  static int AppInit(int argc, char **argv, void *data)
+  static void AppInit(int argc, char **argv, void *data)
   {
 #pragma GCC diagnostic push
 #pragma GCC diagnostic ignored "-Wold-style-cast"
@@ -357,7 +357,6 @@ struct Framework::Impl
     ecore_app_args_set( argc, (const char **)argv );
 
 #pragma GCC diagnostic pop
-    return 0;
   }
 
   static void AppFinish(void)