summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/tagcache.c6
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)
265} 265}
266 266
267/* Helper functions for the two most read/write data structure: tagfile_entry and index_entry */ 267/* Helper functions for the two most read/write data structure: tagfile_entry and index_entry */
268ssize_t ecread_tagfile_entry(int fd, struct tagfile_entry *buf) 268static ssize_t ecread_tagfile_entry(int fd, struct tagfile_entry *buf)
269{ 269{
270 return ecread(fd, buf, 1, tagfile_entry_ec, tc_stat.econ); 270 return ecread(fd, buf, 1, tagfile_entry_ec, tc_stat.econ);
271} 271}
272 272
273ssize_t ecread_index_entry(int fd, struct index_entry *buf) 273static ssize_t ecread_index_entry(int fd, struct index_entry *buf)
274{ 274{
275 return ecread(fd, buf, 1, index_entry_ec, tc_stat.econ); 275 return ecread(fd, buf, 1, index_entry_ec, tc_stat.econ);
276} 276}
277 277
278ssize_t ecwrite_index_entry(int fd, struct index_entry *buf) 278static ssize_t ecwrite_index_entry(int fd, struct index_entry *buf)
279{ 279{
280 return ecwrite(fd, buf, 1, index_entry_ec, tc_stat.econ); 280 return ecwrite(fd, buf, 1, index_entry_ec, tc_stat.econ);
281} 281}