Get rid of trailing whitespaces (9 / 14)

Remove trailing whitespaces
Differential Revision: https://phab.enlightenment.org/D12008
This commit is contained in:
Elyes HAOUAS 2020-06-20 09:50:00 +00:00 committed by Stefan Schmidt
parent 032894a489
commit 1f61788c86
1 changed files with 4 additions and 4 deletions

View File

@ -195,7 +195,7 @@ _eio_kevent_handler(void *data EINA_UNUSED, Ecore_Fd_Handler *fdh)
_eio_monitor_send(backend->parent, backend->parent->path, event_code);
}
}
return ECORE_CALLBACK_RENEW;
}
@ -242,7 +242,7 @@ void eio_monitor_backend_shutdown(void)
if (!_kqueue_fd) return;
eina_hash_free(_kevent_monitors);
fd = ecore_main_fd_handler_fd_get(_kqueue_fd);
ecore_main_fd_handler_del(_kqueue_fd);
_kqueue_fd = NULL;
@ -267,7 +267,7 @@ void eio_monitor_backend_add(Eio_Monitor *monitor)
backend = calloc(1, sizeof (Eio_Monitor_Backend));
if (!backend) return;
res = stat(monitor->path, &st);
if (res) goto error;
@ -292,7 +292,7 @@ void eio_monitor_backend_add(Eio_Monitor *monitor)
}
return;
error:
free(backend);
}