From: Tom Hacohen Date: Wed, 18 Feb 2015 12:36:20 +0000 (+0000) Subject: Allow building without ptrace X-Git-Tag: submit/tizen/20150311.085739^2~68 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=86654c86f820116eee92a86d84aa19f76707cbec;p=platform%2Fupstream%2Fenlightenment.git 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 --- diff --git a/src/bin/e_start_main.c b/src/bin/e_start_main.c index e52ad51fb8..9394284e4a 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 }