Changes in uspace/lib/ext2/libext2_filesystem.c [260c052:d7c3367] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext2/libext2_filesystem.c
r260c052 rd7c3367 42 42 #include <malloc.h> 43 43 #include <assert.h> 44 #include <byteorder.h> 44 45 45 46 /** … … 369 370 370 371 assert(offset_in_block < block_ids_per_block); 371 current_block = ((uint32_t*)block->data)[offset_in_block];372 current_block = uint32_t_le2host(((uint32_t*)block->data)[offset_in_block]); 372 373 373 374 rc = block_put(block);
Note:
See TracChangeset
for help on using the changeset viewer.