diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-05-21 13:20:29 +0200 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-05-26 11:18:13 +0200 |
commit | acddf44071674746d61895d89172481f85ca8d31 (patch) | |
tree | e607f617b83dfeb7d359faf46006ec48e12aa819 /libdiskfs | |
parent | 67d467a09126e9246ca7fd57ff63952577497c83 (diff) |
libdiskfs: fix type of dir_cache_id, node_cache_id
* libdiskfs/name-cache.c (struct lookup_cache): Fix type of
dir_cache_id, node_cache_id.
Diffstat (limited to 'libdiskfs')
-rw-r--r-- | libdiskfs/name-cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdiskfs/name-cache.c b/libdiskfs/name-cache.c index 8424ffee..c113692c 100644 --- a/libdiskfs/name-cache.c +++ b/libdiskfs/name-cache.c @@ -37,7 +37,7 @@ struct lookup_cache /* Used to indentify nodes to the fs dependent code. 0 for NODE_CACHE_ID means a `negative' entry -- recording that there's definitely no node with this name. */ - int dir_cache_id, node_cache_id; + ino64_t dir_cache_id, node_cache_id; /* Name of the node NODE_CACHE_ID in the directory DIR_CACHE_ID. Entries with names too long to fit in this buffer aren't cached at all. */ |