e start - fix warning on unused params when ptracing

enlightenment-0.24
Carsten Haitzler 4 years ago
parent 9c8661abe2
commit e122b2855f
  1. 2
      src/bin/e_start_main.c

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

Loading…
Cancel
Save