Damn typos. Well, at least I didn't break cvs.

SVN revision: 19693
This commit is contained in:
David Walter Seikel 2006-01-10 12:26:31 +00:00
parent c4cf8905c4
commit 5e78588f50
2 changed files with 2 additions and 2 deletions

View File

@ -69,7 +69,7 @@ extern "C" {
#define ECORE_EVENT_SIGNAL_POWER 5 /**< Power signal event */
#define ECORE_EVENT_SIGNAL_REALTIME 6 /**< Realtime signal event */
#define ECORE_EVENT_EXE_DATA 7 /**< Data from a child process */
#define ECORE_EVENT_EXE_ERRORS 8 /**< Errors from a child process */
#define ECORE_EVENT_EXE_ERROR 8 /**< Error from a child process */
#define ECORE_EVENT_COUNT 9
#ifndef _ECORE_PRIVATE_H

View File

@ -245,7 +245,7 @@ struct _Ecore_Exe
Ecore_Exe_Flags flags;
Ecore_Fd_Handler *write_fd_handler; /* the fd_handler to handle write to child - if this was used, or NULL if not */
Ecore_Fd_Handler *read_fd_handler; /* the fd_handler to handle read from child - if this was used, or NULL if not */
Ecore_Fd_Handler *errro_fd_handler; /* the fd_handler to handle errors from child - if this was used, or NULL if not */
Ecore_Fd_Handler *error_fd_handler; /* the fd_handler to handle errors from child - if this was used, or NULL if not */
void *write_data_buf; /* a data buffer for data to write to the child -
* realloced as needed for more data and flushed when the fd handler says writes are possible
*/