diff options
author | Jean Guyomarc'h <jean.guyomarch@gmail.com> | 2016-04-09 21:41:37 +0200 |
---|---|---|
committer | Jean Guyomarc'h <jean.guyomarch@gmail.com> | 2016-04-09 21:52:39 +0200 |
commit | ca346eb2731aca1037f96943c930c8dab73a1cbd (patch) | |
tree | 2db0ee1b008a25368d5b3f5dbc598d2ca7587c86 | |
parent | 1c48b76da84a9c476befbd30c9abc2d0f238bd50 (diff) | |
download | efl-ca346eb2731aca1037f96943c930c8dab73a1cbd.tar.gz |
ecore: fix documentation of Ecore_Exe_Event_Del
-rw-r--r-- | src/lib/ecore/Ecore_Common.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/ecore/Ecore_Common.h b/src/lib/ecore/Ecore_Common.h index 711ea7a07c..47024af465 100644 --- a/src/lib/ecore/Ecore_Common.h +++ b/src/lib/ecore/Ecore_Common.h @@ -985,9 +985,9 @@ struct _Ecore_Exe_Event_Del pid_t pid; /**< The process ID of the process that exited */ int exit_code; /**< The exit code of the process */ Ecore_Exe *exe; /**< The handle to the exited process, or @c NULL if not found */ - int exit_signal; /** < The signal that caused the process to exit */ - Eina_Bool exited : 1; /** < set to 1 if the process exited of its own accord */ - Eina_Bool signalled : 1; /** < set to 1 id the process exited due to uncaught signal */ + int exit_signal; /**< The signal that caused the process to exit */ + Eina_Bool exited : 1; /**< Set to 1 if the process exited of its own accord */ + Eina_Bool signalled : 1; /**< Set to 1 id the process exited due to uncaught signal */ void *ext_data; /**< Extension data - not used */ #if !defined (_WIN32) && !defined (__lv2ppu__) && !defined (EXOTIC_NO_SIGNAL) siginfo_t data; /**< Signal info */ |