Changeset 80bd676 in mainline
- Timestamp:
- 2012-07-11T09:01:52Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8eff2b0
- Parents:
- d9812b4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/libext4_superblock.c
rd9812b4 r80bd676 1012 1012 { 1013 1013 int rc; 1014 uint32_t phys_block_size;1014 size_t phys_block_size; 1015 1015 1016 1016 /* Load physical block size from block device */ … … 1023 1023 uint64_t first_block = EXT4_SUPERBLOCK_OFFSET / phys_block_size; 1024 1024 /* Compute number of block to write */ 1025 uint32_t block_count = EXT4_SUPERBLOCK_SIZE / phys_block_size;1025 size_t block_count = EXT4_SUPERBLOCK_SIZE / phys_block_size; 1026 1026 1027 1027 /* Check alignment */
Note:
See TracChangeset
for help on using the changeset viewer.