e start - fix warning on unused params when ptracing

This commit is contained in:
Carsten Haitzler 2020-01-15 17:06:30 +01:00
parent 9c8661abe2
commit e122b2855f
1 changed files with 2 additions and 0 deletions

View File

@ -404,6 +404,8 @@ _e_ptrace_getsiginfo(int child, siginfo_t *sig, Eina_Bool really_know)
if (!really_know)
return ptrace(PT_GETSIGINFO, child, NULL, sig);
#else
(void)child;
(void)sig;
(void)really_know;
#endif
return 0;