From 86654c86f820116eee92a86d84aa19f76707cbec Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Wed, 18 Feb 2015 12:36:20 +0000 Subject: [PATCH] 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 e52ad51fb..9394284e4 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 }