mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-14 15:42:28 -05:00
Fix several 'variable set but not used' warnings reported by GCC 6.4.1.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29871 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
6484b45d71
commit
f7808c1fe5
13 changed files with 51 additions and 42 deletions
|
|
@ -655,9 +655,9 @@ int obj_sigoutletindex(t_object *x, int m)
|
|||
|
||||
int obj_issignaloutlet(t_object *x, int m)
|
||||
{
|
||||
int n;
|
||||
/* int n; */
|
||||
t_outlet *o2;
|
||||
for (o2 = x->ob_outlet, n = 0; o2 && m--; o2 = o2->o_next);
|
||||
for (o2 = x->ob_outlet /* , n = 0 */; o2 && m--; o2 = o2->o_next);
|
||||
return (o2 && (o2->o_sym == &s_signal));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue