Changeset 7ae01d5 in mainline for uspace/lib/ext4/src/filesystem.c
- Timestamp:
- 2024-04-30T13:25:56Z (9 months ago)
- 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)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/src/filesystem.c
rbdd9e92 r7ae01d5 1 1 /* 2 * Copyright (c) 20 18Jiri Svoboda2 * Copyright (c) 2024 Jiri Svoboda 3 3 * Copyright (c) 2011 Martin Sucha 4 4 * Copyright (c) 2012 Frantisek Princ … … 83 83 84 84 /* Initialize block library (4096 is size of communication channel) */ 85 rc = block_init(fs->device , 4096);85 rc = block_init(fs->device); 86 86 if (rc != EOK) 87 87 goto err; … … 265 265 266 266 /* Initialize block library (4096 is size of communication channel) */ 267 rc = block_init(service_id , 4096);267 rc = block_init(service_id); 268 268 if (rc != EOK) 269 269 goto err;
Note:
See TracChangeset
for help on using the changeset viewer.