summaryrefslogtreecommitdiff
path: root/apps/tagcache.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/tagcache.c')
-rw-r--r--apps/tagcache.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/tagcache.c b/apps/tagcache.c
index 99ef3f5587..ef642b1e3c 100644
--- a/apps/tagcache.c
+++ b/apps/tagcache.c
@@ -192,14 +192,14 @@ struct master_header {
192}; 192};
193 193
194/* For the endianess correction */ 194/* For the endianess correction */
195static const char *tagfile_entry_ec = "ll"; 195static const char * const tagfile_entry_ec = "ll";
196/** 196/**
197 Note: This should be (1 + TAG_COUNT) amount of l's. 197 Note: This should be (1 + TAG_COUNT) amount of l's.
198 */ 198 */
199static const char *index_entry_ec = "llllllllllllllllllllll"; 199static const char * const index_entry_ec = "llllllllllllllllllllll";
200 200
201static const char *tagcache_header_ec = "lll"; 201static const char * const tagcache_header_ec = "lll";
202static const char *master_header_ec = "llllll"; 202static const char * const master_header_ec = "llllll";
203 203
204static struct master_header current_tcmh; 204static struct master_header current_tcmh;
205 205