Changeset 7ae01d5 in mainline for uspace/lib/ext4/src/filesystem.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/lib/ext4/src/filesystem.c

    rbdd9e92 r7ae01d5  
    11/*
    2  * Copyright (c) 2018 Jiri Svoboda
     2 * Copyright (c) 2024 Jiri Svoboda
    33 * Copyright (c) 2011 Martin Sucha
    44 * Copyright (c) 2012 Frantisek Princ
     
    8383
    8484        /* Initialize block library (4096 is size of communication channel) */
    85         rc = block_init(fs->device, 4096);
     85        rc = block_init(fs->device);
    8686        if (rc != EOK)
    8787                goto err;
     
    265265
    266266        /* Initialize block library (4096 is size of communication channel) */
    267         rc = block_init(service_id, 4096);
     267        rc = block_init(service_id);
    268268        if (rc != EOK)
    269269                goto err;
Note: See TracChangeset for help on using the changeset viewer.