forked from len0rd/rockbox
fix sign error
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30812 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
d2958b9d32
commit
8e18dc85cf
1 changed files with 4 additions and 4 deletions
|
|
@ -165,10 +165,10 @@ static int move_callback(int handle, void* current, void* new)
|
||||||
}
|
}
|
||||||
dircache_root = new;
|
dircache_root = new;
|
||||||
|
|
||||||
d_names_start -= diff;
|
d_names_start += diff;
|
||||||
d_names_end -= diff;
|
d_names_end += diff;
|
||||||
dot -= diff;
|
dot += diff;
|
||||||
dotdot -= diff;
|
dotdot += diff;
|
||||||
|
|
||||||
return BUFLIB_CB_OK;
|
return BUFLIB_CB_OK;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue