Changeset 6a7e497 in mainline for uspace/app/blkdump/blkdump.c


Ignore:
Timestamp:
2011-06-02T19:05:17Z (14 years ago)
Author:
Martin Sucha <sucha14@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
16b2ea8
Parents:
18626b3 (diff), d030e0c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge with the original ext2 branch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/blkdump/blkdump.c

    r18626b3 r6a7e497  
    202202        }
    203203       
    204         // Print hexadecimal values
     204        /* Print hexadecimal values */
    205205        for (pos = 0; pos < length; pos++) {
    206206                if (pos == length/2) {
     
    210210        }
    211211       
    212         // pad with spaces if we have less than 16 bytes
     212        /* Pad with spaces if we have less than 16 bytes */
    213213        for (pos = length; pos < bytes_per_row; pos++) {
    214214                if (pos == length/2) {
     
    218218        }
    219219       
    220         // Print printable characters
     220        /* Print printable characters */
    221221        for (pos = 0; pos < length; pos++) {
    222222                if (pos == length/2) {
Note: See TracChangeset for help on using the changeset viewer.