1
0
Fork 0
forked from len0rd/rockbox

Dircache: Remove dircache_entry::name_len.

It's reduntant, and enlarges the dircache unnecessarily. Saves 4 byte per file in the whole filesystem.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30032 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2011-06-20 20:07:35 +00:00
parent ffee46a8b1
commit 60e4f20c38
2 changed files with 31 additions and 40 deletions

View file

@ -69,7 +69,6 @@ struct dircache_entry {
struct dircache_entry *up;
struct dircache_entry *down;
long startcluster;
unsigned long name_len;
char *d_name;
};