Ignore:
File:
1 edited

Legend:

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

    r50b581d rfeeac0d  
    4444#include <stdlib.h>
    4545#include <str.h>
    46 #include <bool.h>
     46#include <stdbool.h>
    4747#include <fibril_synch.h>
    4848#include <adt/list.h>
     
    548548        int found = 0;
    549549
    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) {
    554551                if (str_cmp(mtab_ent->mp, mp) == 0) {
    555552                        list_remove(&mtab_ent->link);
     
    13711368        async_answer_1(callid, EOK, mtab_size);
    13721369
    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) {
    13771371                rc = ENOTSUP;
    13781372
Note: See TracChangeset for help on using the changeset viewer.