Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/vfs/vfs_ops.c

    rfeeac0d r3e6a98c5  
    548548        int found = 0;
    549549
    550         list_foreach(mtab_list, link, mtab_ent_t, mtab_ent) {
     550        list_foreach(mtab_list, cur) {
     551                mtab_ent_t *mtab_ent = list_get_instance(cur, mtab_ent_t,
     552                    link);
     553
    551554                if (str_cmp(mtab_ent->mp, mp) == 0) {
    552555                        list_remove(&mtab_ent->link);
     
    13681371        async_answer_1(callid, EOK, mtab_size);
    13691372
    1370         list_foreach(mtab_list, link, mtab_ent_t, mtab_ent) {
     1373        list_foreach(mtab_list, cur) {
     1374                mtab_ent_t *mtab_ent = list_get_instance(cur, mtab_ent_t,
     1375                    link);
     1376
    13711377                rc = ENOTSUP;
    13721378
Note: See TracChangeset for help on using the changeset viewer.