Changes in uspace/srv/fs/cdfs/cdfs_ops.c [5e801dc:0db0df2] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/cdfs/cdfs_ops.c
r5e801dc r0db0df2 1 1 /* 2 * Copyright (c) 2024 Jiri Svoboda 2 3 * Copyright (c) 2011 Martin Decky 3 4 * All rights reserved. … … 297 298 } 298 299 299 static bool nodes_key_equal(const void *k, const ht_link_t *item)300 static bool nodes_key_equal(const void *k, size_t hash, const ht_link_t *item) 300 301 { 301 302 cdfs_node_t *node = hash_table_get_inst(item, cdfs_node_t, nh_link); … … 323 324 324 325 /** Nodes hash table operations */ 325 static hash_table_ops_t nodes_ops = {326 static const hash_table_ops_t nodes_ops = { 326 327 .hash = nodes_hash, 327 328 .key_hash = nodes_key_hash, … … 1093 1094 1094 1095 /* Initialize the block layer */ 1095 errno_t rc = block_init(service_id , BLOCK_SIZE);1096 errno_t rc = block_init(service_id); 1096 1097 if (rc != EOK) 1097 1098 return rc; … … 1150 1151 { 1151 1152 /* Initialize the block layer */ 1152 errno_t rc = block_init(service_id , BLOCK_SIZE);1153 errno_t rc = block_init(service_id); 1153 1154 if (rc != EOK) 1154 1155 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.