Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/cdfs/cdfs_ops.c

    r7ae01d5 r5e801dc  
    11/*
    2  * Copyright (c) 2024 Jiri Svoboda
    32 * Copyright (c) 2011 Martin Decky
    43 * All rights reserved.
     
    324323
    325324/** Nodes hash table operations */
    326 static const hash_table_ops_t nodes_ops = {
     325static hash_table_ops_t nodes_ops = {
    327326        .hash = nodes_hash,
    328327        .key_hash = nodes_key_hash,
     
    10941093
    10951094        /* Initialize the block layer */
    1096         errno_t rc = block_init(service_id);
     1095        errno_t rc = block_init(service_id, BLOCK_SIZE);
    10971096        if (rc != EOK)
    10981097                return rc;
     
    11511150{
    11521151        /* Initialize the block layer */
    1153         errno_t rc = block_init(service_id);
     1152        errno_t rc = block_init(service_id, BLOCK_SIZE);
    11541153        if (rc != EOK)
    11551154                return rc;
Note: See TracChangeset for help on using the changeset viewer.