Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/fat/fat_idx.c

    r0db0df2 r61eb2ce2  
    3737
    3838#include "fat.h"
     39#include "../../vfs/vfs.h"
    3940#include <errno.h>
    4041#include <str.h>
     
    138139}
    139140
    140 static bool pos_key_equal(const void *key, size_t hash, const ht_link_t *item)
     141static bool pos_key_equal(const void *key, const ht_link_t *item)
    141142{
    142143        const pos_key_t *pos = key;
     
    179180}
    180181
    181 static bool idx_key_equal(const void *key_arg, size_t hash,
    182     const ht_link_t *item)
     182static bool idx_key_equal(const void *key_arg, const ht_link_t *item)
    183183{
    184184        fat_idx_t *fidx = hash_table_get_inst(item, fat_idx_t, uih_link);
Note: See TracChangeset for help on using the changeset viewer.