elm_general: Add '*' explicitly for function pointer parameter
authorTae-Hwan Kim <the81.kim@samsung.com>
Wed, 5 Nov 2014 06:01:15 +0000 (15:01 +0900)
committerChunEon Park <hermet@hermet.pe.kr>
Wed, 5 Nov 2014 06:01:15 +0000 (15:01 +0900)
Reviewers: raster, cedric, huchi, Hermet

Reviewed By: Hermet

Differential Revision: https://phab.enlightenment.org/D1637

src/lib/elm_general.h
src/lib/elm_main.c

index 2ce7236..86eba3b 100644 (file)
@@ -301,7 +301,7 @@ EAPI Eina_Bool elm_quicklaunch_prepare(int argc, char **argv, const char *cwd);
 /**
  * Exposed symbol used only by macros and should not be used by apps
  */
-EAPI Eina_Bool elm_quicklaunch_fork(int argc, char **argv, char *cwd, void (postfork_func) (void *data), void *postfork_data);
+EAPI Eina_Bool elm_quicklaunch_fork(int argc, char **argv, char *cwd, void (*postfork_func) (void *data), void *postfork_data);
 
 /**
  * Exposed symbol used only by macros and should not be used by apps
index a708d12..e7ae247 100644 (file)
@@ -903,7 +903,7 @@ EAPI Eina_Bool
 elm_quicklaunch_fork(int    argc,
                      char **argv,
                      char  *cwd,
-                     void (postfork_func) (void *data),
+                     void (*postfork_func) (void *data),
                      void  *postfork_data)
 {
 #ifdef HAVE_FORK