diff options
author | Jens Arnold <amiconn@rockbox.org> | 2010-03-17 08:23:50 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2010-03-17 08:23:50 +0000 |
commit | 41ef1d512c63aef56ee5b6658083aaeff3a6a7fd (patch) | |
tree | 07babb34515566fbb6121964b3f634c33746b24c /apps | |
parent | 37862a215763411b1a939f0ba9c48ffe7d185247 (diff) |
Make helper functions static.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25231 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/tagcache.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/tagcache.c b/apps/tagcache.c index b6ce45fa7f..0d06d8f563 100644 --- a/apps/tagcache.c +++ b/apps/tagcache.c @@ -265,17 +265,17 @@ const char* tagcache_tag_to_str(int tag) } /* Helper functions for the two most read/write data structure: tagfile_entry and index_entry */ -ssize_t ecread_tagfile_entry(int fd, struct tagfile_entry *buf) +static ssize_t ecread_tagfile_entry(int fd, struct tagfile_entry *buf) { return ecread(fd, buf, 1, tagfile_entry_ec, tc_stat.econ); } -ssize_t ecread_index_entry(int fd, struct index_entry *buf) +static ssize_t ecread_index_entry(int fd, struct index_entry *buf) { return ecread(fd, buf, 1, index_entry_ec, tc_stat.econ); } -ssize_t ecwrite_index_entry(int fd, struct index_entry *buf) +static ssize_t ecwrite_index_entry(int fd, struct index_entry *buf) { return ecwrite(fd, buf, 1, index_entry_ec, tc_stat.econ); } |