projects
/
platform
/
upstream
/
enlightenment.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bc41e68
)
Allow building without ptrace
author
Tom Hacohen
<tom@stosb.com>
Wed, 18 Feb 2015 12:36:20 +0000
(12:36 +0000)
committer
Tom 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
patch
|
blob
|
history
diff --git
a/src/bin/e_start_main.c
b/src/bin/e_start_main.c
index e52ad51fb83a1e3c84021df5de63afc920792bad..9394284e4adfd42be384b7709077eb3499428a25 100644
(file)
--- 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
}