Changes in uspace/srv/vfs/vfs_ops.c [3e6a98c5:feeac0d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs_ops.c
r3e6a98c5 rfeeac0d 548 548 int found = 0; 549 549 550 list_foreach(mtab_list, cur) { 551 mtab_ent_t *mtab_ent = list_get_instance(cur, mtab_ent_t, 552 link); 553 550 list_foreach(mtab_list, link, mtab_ent_t, mtab_ent) { 554 551 if (str_cmp(mtab_ent->mp, mp) == 0) { 555 552 list_remove(&mtab_ent->link); … … 1371 1368 async_answer_1(callid, EOK, mtab_size); 1372 1369 1373 list_foreach(mtab_list, cur) { 1374 mtab_ent_t *mtab_ent = list_get_instance(cur, mtab_ent_t, 1375 link); 1376 1370 list_foreach(mtab_list, link, mtab_ent_t, mtab_ent) { 1377 1371 rc = ENOTSUP; 1378 1372
Note:
See TracChangeset
for help on using the changeset viewer.