Changeset c621f4aa in mainline for uspace/srv/vfs/vfs_node.c
- Timestamp:
- 2010-07-25T10:11:13Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 377cce8
- Parents:
- 24a2517 (diff), a2da43c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs_node.c
r24a2517 rc621f4aa 38 38 #include "vfs.h" 39 39 #include <stdlib.h> 40 #include <str ing.h>40 #include <str.h> 41 41 #include <fibril_synch.h> 42 42 #include <adt/hash_table.h> … … 242 242 { 243 243 vfs_node_t *node = hash_table_get_instance(item, vfs_node_t, nh_link); 244 return (node->fs_handle == key[KEY_FS_HANDLE]) &&244 return (node->fs_handle == (fs_handle_t) key[KEY_FS_HANDLE]) && 245 245 (node->dev_handle == key[KEY_DEV_HANDLE]) && 246 246 (node->index == key[KEY_INDEX]);
Note:
See TracChangeset
for help on using the changeset viewer.