Changes in uspace/app/blkdump/blkdump.c [d5c1051:7354b5e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/blkdump/blkdump.c
rd5c1051 r7354b5e 161 161 printf("Device %s has %" PRIuOFF64 " blocks, %" PRIuOFF64 " bytes each\n", dev_path, dev_nblocks, (aoff64_t) block_size); 162 162 163 int ret;164 163 if (toc) 165 r et= print_toc();164 rc = print_toc(); 166 165 else 167 r et= print_blocks(block_offset, block_count, block_size);166 rc = print_blocks(block_offset, block_count, block_size); 168 167 169 168 block_fini(service_id); 170 169 171 return r et;170 return rc; 172 171 } 173 172
Note:
See TracChangeset
for help on using the changeset viewer.