tasn pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=f1519f3334eabced1d29202ce6fa7f95de4d9525
commit f1519f3334eabced1d29202ce6fa7f95de4d9525 Author: Tom Hacohen <[email protected]> Date: Wed Jun 10 13:07:12 2015 +0100 Eina debug: Fix shadow warning. This is especially obviously wrong, beacuse the original parameter is not even used. --- src/lib/eina/eina_debug_monitor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/eina/eina_debug_monitor.c b/src/lib/eina/eina_debug_monitor.c index bf94871..c9a19fd 100644 --- a/src/lib/eina/eina_debug_monitor.c +++ b/src/lib/eina/eina_debug_monitor.c @@ -135,7 +135,7 @@ _eina_debug_collect_bt(pthread_t pth) // way. this is an alternative to using external debuggers so we can get // users or developers to get useful information about an app at all times static void * -_eina_debug_monitor(void *data EINA_UNUSED) +_eina_debug_monitor(void *_data EINA_UNUSED) { int bts = 0, ret, max_fd; double t0, t; --
