Allow building without ptrace
authorTom Hacohen <tom@stosb.com>
Wed, 18 Feb 2015 12:36:20 +0000 (12:36 +0000)
committerTom Hacohen <tom@stosb.com>
Wed, 18 Feb 2015 12:36:20 +0000 (12:36 +0000)
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

index e52ad51fb83a1e3c84021df5de63afc920792bad..9394284e4adfd42be384b7709077eb3499428a25 100644 (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
 }