diff options
author | Tom Hacohen <tom@stosb.com> | 2015-06-10 13:07:12 +0100 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2015-06-10 13:07:12 +0100 |
commit | f1519f3334eabced1d29202ce6fa7f95de4d9525 (patch) | |
tree | 7c2b6590263cbfb05c95ab0244e49210619fc7fc | |
parent | 0dd76d7ea80fc00dbdac7fcc1ff1d860d9f4d86d (diff) |
Eina debug: Fix shadow warning.
This is especially obviously wrong, beacuse the original parameter is not
even used.
-rw-r--r-- | src/lib/eina/eina_debug_monitor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/eina/eina_debug_monitor.c b/src/lib/eina/eina_debug_monitor.c index bf9487183f..c9a19fd33a 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) | |||
135 | // way. this is an alternative to using external debuggers so we can get | 135 | // way. this is an alternative to using external debuggers so we can get |
136 | // users or developers to get useful information about an app at all times | 136 | // users or developers to get useful information about an app at all times |
137 | static void * | 137 | static void * |
138 | _eina_debug_monitor(void *data EINA_UNUSED) | 138 | _eina_debug_monitor(void *_data EINA_UNUSED) |
139 | { | 139 | { |
140 | int bts = 0, ret, max_fd; | 140 | int bts = 0, ret, max_fd; |
141 | double t0, t; | 141 | double t0, t; |