Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ext4/src/filesystem.c

    r7bdedb5 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.