mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 19:26:25 +00:00
nubus: fix mis-indented statement
It seems this is the right way around because otherwise the len usage in the outer loop would be pretty pointless. Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
dd1c53a64a
commit
2e0eb731e5
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ static void nubus_advance(unsigned char **ptr, int len, int map)
|
||||||
{
|
{
|
||||||
while(not_useful(p,map))
|
while(not_useful(p,map))
|
||||||
p++;
|
p++;
|
||||||
p++;
|
p++;
|
||||||
len--;
|
len--;
|
||||||
}
|
}
|
||||||
*ptr = p;
|
*ptr = p;
|
||||||
|
|
Loading…
Reference in a new issue