[Tizen] Change the return type of the init function 64/149364/2 accepted/tizen/unified/20170920.081058 submit/tizen/20170919.071054 submit/tizen/20170925.045801
authorHeeyong Song <heeyong.song@samsung.com>
Tue, 12 Sep 2017 06:22:37 +0000 (15:22 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Tue, 12 Sep 2017 06:26:44 +0000 (15:26 +0900)
Change-Id: Ie642f12e865ff40352885291395cf825ab331405

adaptors/tizen/framework-tizen.cpp

index f437a92..4fcba81 100644 (file)
@@ -316,7 +316,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"
@@ -325,7 +325,6 @@ struct Framework::Impl
     ecore_app_args_set( argc, (const char **)argv );
 
 #pragma GCC diagnostic pop
-    return 0;
   }
 
   static void AppFinish(void)