Changeset cffce57 in mainline
- Timestamp:
- 2009-09-03T12:23:40Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 056fa40, 684b655
- Parents:
- 7a56b1ed
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/bdd/bdd.c
r7a56b1ed rcffce57 112 112 while (size > 0) { 113 113 rc = block_get(&block, handle, boff, 0); 114 assert(rc == EOK); 114 if (rc != EOK) { 115 printf("Error: could not get block %u, device %u.\n", 116 boff, handle); 117 return CMD_FAILURE; 118 } 115 119 blk = (uint8_t *) block->data; 116 120 … … 142 146 143 147 rc = block_put(block); 144 assert(rc == EOK); 148 if (rc != EOK) { 149 printf("Error: could not put block %p.\n", 150 block); 151 return CMD_FAILURE; 152 } 145 153 146 154 if (size > rows * BPR)
Note:
See TracChangeset
for help on using the changeset viewer.