jpeg pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=c7bedc2b231f536904f39b074ca9e62b745ea6c2
commit c7bedc2b231f536904f39b074ca9e62b745ea6c2 Author: Pawel Aksiutowicz <[email protected]> Date: Tue Nov 21 11:17:51 2017 +0900 eina: warning removed from eina_debug_timer Reviewers: stanluk, lukasz.stanislawski Subscribers: cedric, jpeg Differential Revision: https://phab.enlightenment.org/D5500 --- src/lib/eina/eina_debug_timer.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/eina/eina_debug_timer.c b/src/lib/eina/eina_debug_timer.c index 471f282fc3..26b93e5fd4 100644 --- a/src/lib/eina/eina_debug_timer.c +++ b/src/lib/eina/eina_debug_timer.c @@ -190,7 +190,8 @@ _eina_debug_timer_init(void) { eina_spinlock_new(&_lock); #ifndef _WIN32 - pipe(pipeToThread); + if (pipe(pipeToThread) == -1) + return EINA_FALSE; #endif return EINA_TRUE; } --
