elm_general: Add '*' explicitly for function pointer parameter

Reviewers: raster, cedric, huchi, Hermet

Reviewed By: Hermet

Differential Revision: https://phab.enlightenment.org/D1637
This commit is contained in:
Tae-Hwan Kim 2014-11-05 15:01:15 +09:00 committed by ChunEon Park
parent 5baab8c4e3
commit 2afae8dff2
2 changed files with 2 additions and 2 deletions

View 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

View 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