Changeset 3dd148d in mainline for uspace/srv/fs/cdfs/cdfs_ops.c
- Timestamp:
- 2013-07-29T15:15:49Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 736b07b
- Parents:
- a1c95da
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/cdfs/cdfs_ops.c
ra1c95da r3dd148d 625 625 } 626 626 627 static uint32_t cdfs_size_block(service_id_t service_id) 628 { 629 uint32_t block_size = BLOCK_SIZE; 630 return block_size; 627 static int cdfs_size_block(service_id_t service_id, uint32_t *size) 628 { 629 *size = BLOCK_SIZE; 630 631 return EOK; 631 632 } 632 633
Note:
See TracChangeset
for help on using the changeset viewer.