* ecore: Remove debug code.

SVN revision: 39364
This commit is contained in:
Cedric BAIL 2009-03-04 12:40:50 +00:00
parent 775ecc6a05
commit 140a357fe6
1 changed files with 0 additions and 5 deletions

View File

@ -18,7 +18,6 @@
#include <sys/types.h>
#include <unistd.h>
#include <errno.h>
#include <assert.h>
#define FIX_HZ 1
@ -151,10 +150,6 @@ ecore_main_fd_handler_add(int fd, Ecore_Fd_Handler_Flags flags, int (*func) (voi
(flags == 0) ||
(!func)) return NULL;
EINA_INLIST_FOREACH(fd_handlers, fdh)
if (fdh->fd == fd && fdh->flags == flags)
abort();
fdh = calloc(1, sizeof(Ecore_Fd_Handler));
if (!fdh) return NULL;
ECORE_MAGIC_SET(fdh, ECORE_MAGIC_FD_HANDLER);