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