Changeset 7ae01d5 in mainline for uspace/srv/fs/cdfs/cdfs_ops.c


Ignore:
Timestamp:
2024-04-30T13:25:56Z (9 months ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master
Children:
926d9d9b
Parents:
bdd9e92
git-author:
Jiri Svoboda <jiri@…> (2024-04-29 18:25:36)
git-committer:
Jiri Svoboda <jiri@…> (2024-04-30 13:25:56)
Message:

Remove unused comm_size parameter of block_init()

File:
1 edited

Legend:

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

    rbdd9e92 r7ae01d5  
    11/*
     2 * Copyright (c) 2024 Jiri Svoboda
    23 * Copyright (c) 2011 Martin Decky
    34 * All rights reserved.
     
    10931094
    10941095        /* Initialize the block layer */
    1095         errno_t rc = block_init(service_id, BLOCK_SIZE);
     1096        errno_t rc = block_init(service_id);
    10961097        if (rc != EOK)
    10971098                return rc;
     
    11501151{
    11511152        /* Initialize the block layer */
    1152         errno_t rc = block_init(service_id, BLOCK_SIZE);
     1153        errno_t rc = block_init(service_id);
    11531154        if (rc != EOK)
    11541155                return rc;
Note: See TracChangeset for help on using the changeset viewer.