Changes in uspace/srv/fs/fat/fat_ops.c [0be611b:b33870b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat_ops.c
r0be611b rb33870b 90 90 static bool fat_is_directory(fs_node_t *); 91 91 static bool fat_is_file(fs_node_t *node); 92 static service_id_t fat_ device_get(fs_node_t *node);92 static service_id_t fat_service_get(fs_node_t *node); 93 93 94 94 /* … … 838 838 } 839 839 840 service_id_t fat_ device_get(fs_node_t *node)840 service_id_t fat_service_get(fs_node_t *node) 841 841 { 842 842 return 0; … … 860 860 .is_directory = fat_is_directory, 861 861 .is_file = fat_is_file, 862 . device_get = fat_device_get862 .service_get = fat_service_get 863 863 }; 864 864
Note:
See TracChangeset
for help on using the changeset viewer.