summaryrefslogtreecommitdiff
path: root/firmware/include/dircache.h
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2011-06-20 20:07:35 +0000
committerThomas Martitz <kugel@rockbox.org>2011-06-20 20:07:35 +0000
commit60e4f20c38853337c4f54a677eb96c0a4488486f (patch)
tree2227242bae85d5af9ec02e9275a43316bc6b040f /firmware/include/dircache.h
parentffee46a8b1cdf7c083a4f13c5d696b71930106e8 (diff)
downloadrockbox-60e4f20c38853337c4f54a677eb96c0a4488486f.tar.gz
rockbox-60e4f20c38853337c4f54a677eb96c0a4488486f.zip
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
Diffstat (limited to 'firmware/include/dircache.h')
-rw-r--r--firmware/include/dircache.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/firmware/include/dircache.h b/firmware/include/dircache.h
index 87aaa008a7..49e804c7f1 100644
--- a/firmware/include/dircache.h
+++ b/firmware/include/dircache.h
@@ -69,7 +69,6 @@ struct dircache_entry {
69 struct dircache_entry *up; 69 struct dircache_entry *up;
70 struct dircache_entry *down; 70 struct dircache_entry *down;
71 long startcluster; 71 long startcluster;
72 unsigned long name_len;
73 char *d_name; 72 char *d_name;
74}; 73};
75 74