Changeset 0013b9ce in mainline for uspace/srv/fs/fat/fat_ops.c
- Timestamp:
- 2008-11-23T12:27:15Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7782030
- Parents:
- f714576
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat_ops.c
rf714576 r0013b9ce 224 224 static void *fat_create_node(dev_handle_t, int); 225 225 static int fat_destroy_node(void *); 226 static boolfat_link(void *, void *, const char *);226 static int fat_link(void *, void *, const char *); 227 227 static int fat_unlink(void *, void *); 228 228 static void *fat_match(void *, const char *); … … 342 342 } 343 343 344 boolfat_link(void *prnt, void *chld, const char *name)345 { 346 return false; /* not supported at the moment */344 int fat_link(void *prnt, void *chld, const char *name) 345 { 346 return ENOTSUP; /* not supported at the moment */ 347 347 } 348 348 … … 526 526 }; 527 527 528 /* 529 * VFS operations. 530 */ 531 528 532 void fat_mounted(ipc_callid_t rid, ipc_call_t *request) 529 533 {
Note:
See TracChangeset
for help on using the changeset viewer.