Changes in uspace/app/blkdump/blkdump.c [d3842e0:1a86c50] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/blkdump/blkdump.c
rd3842e0 r1a86c50 202 202 } 203 203 204 / / Print hexadecimal values204 /* Print hexadecimal values */ 205 205 for (pos = 0; pos < length; pos++) { 206 206 if (pos == length/2) { … … 210 210 } 211 211 212 / / pad with spaces if we have less than 16 bytes212 /* Pad with spaces if we have less than 16 bytes */ 213 213 for (pos = length; pos < bytes_per_row; pos++) { 214 214 if (pos == length/2) { … … 218 218 } 219 219 220 / / Print printable characters220 /* Print printable characters */ 221 221 for (pos = 0; pos < length; pos++) { 222 222 if (pos == length/2) {
Note:
See TracChangeset
for help on using the changeset viewer.