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
This commit is contained in:
Tom Hacohen 2015-02-18 12:36:20 +00:00
parent bc41e68f80
commit 86654c86f8
1 changed files with 2 additions and 2 deletions

View File

@ -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
}