Changes in uspace/srv/fs/exfat/exfat_idx.c [0db0df2:5e801dc] in mainline
- File:
-
- 1 edited
-
uspace/srv/fs/exfat/exfat_idx.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/exfat/exfat_idx.c
r0db0df2 r5e801dc 37 37 38 38 #include "exfat.h" 39 #include "../../vfs/vfs.h" 39 40 #include <errno.h> 40 41 #include <str.h> … … 138 139 } 139 140 140 static bool pos_key_equal(const void *key, size_t hash,const ht_link_t *item)141 static bool pos_key_equal(const void *key, const ht_link_t *item) 141 142 { 142 143 const pos_key_t *pos = key; … … 148 149 } 149 150 150 static consthash_table_ops_t uph_ops = {151 static hash_table_ops_t uph_ops = { 151 152 .hash = pos_hash, 152 153 .key_hash = pos_key_hash, … … 179 180 } 180 181 181 static bool idx_key_equal(const void *key_arg, size_t hash, 182 const ht_link_t *item) 182 static bool idx_key_equal(const void *key_arg, const ht_link_t *item) 183 183 { 184 184 exfat_idx_t *fidx = hash_table_get_inst(item, exfat_idx_t, uih_link); … … 195 195 } 196 196 197 static consthash_table_ops_t uih_ops = {197 static hash_table_ops_t uih_ops = { 198 198 .hash = idx_hash, 199 199 .key_hash = idx_key_hash,
Note:
See TracChangeset
for help on using the changeset viewer.
