tasn pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=86654c86f820116eee92a86d84aa19f76707cbec

commit 86654c86f820116eee92a86d84aa19f76707cbec
Author: Tom Hacohen <t...@stosb.com>
Date:   Wed Feb 18 12:36:20 2015 +0000

    Allow building without ptrace
    
    Summary: Building without ptrace (on OSes which do not support it, like 
OpenBSD) did not work, because the fallback code had small typos.
    
    Reviewers: devilhorns
    
    Projects: #enlightenment-git
    
    Differential Revision: https://phab.enlightenment.org/D1990
---
 src/bin/e_start_main.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/bin/e_start_main.c b/src/bin/e_start_main.c
index e52ad51..9394284 100644
--- a/src/bin/e_start_main.c
+++ b/src/bin/e_start_main.c
@@ -352,7 +352,7 @@ _e_ptrace_detach(int child, int back, Eina_Bool really_know)
 #else
    (void)child;
    (void)back;
-   (void)really_know);
+   (void)really_know;
 #endif
 }
 
@@ -389,7 +389,7 @@ _e_ptrace_continue(int child, int back, Eina_Bool 
really_know)
 #else
    (void)child;
    (void)back;
-   (void)really_know);
+   (void)really_know;
 #endif
 }
 

-- 


Reply via email to