Changes in uspace/lib/ext4/src/ops.c [5e801dc:b209135] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/src/ops.c
r5e801dc rb209135 101 101 } node_key_t; 102 102 103 static size_t open_nodes_key_hash( constvoid *key_arg)104 { 105 const node_key_t *key =key_arg;103 static size_t open_nodes_key_hash(void *key_arg) 104 { 105 node_key_t *key = (node_key_t *)key_arg; 106 106 return hash_combine(key->service_id, key->index); 107 107 } … … 113 113 } 114 114 115 static bool open_nodes_key_equal( constvoid *key_arg, const ht_link_t *item)116 { 117 const node_key_t *key =key_arg;115 static bool open_nodes_key_equal(void *key_arg, const ht_link_t *item) 116 { 117 node_key_t *key = (node_key_t *)key_arg; 118 118 ext4_node_t *enode = hash_table_get_inst(item, ext4_node_t, link); 119 119
Note:
See TracChangeset
for help on using the changeset viewer.