Changeset 1a86c50 in mainline for uspace/app


Ignore:
Timestamp:
2011-06-02T08:33:23Z (15 years ago)
Author:
Martin Sucha <sucha14@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d030e0c
Parents:
5bd1ffb
Message:

Coding style and comments

Location:
uspace/app
Files:
3 edited

Legend:

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

    r5bd1ffb r1a86c50  
    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) {
  • uspace/app/ext2info/ext2info.c

    r5bd1ffb r1a86c50  
    9595        }
    9696       
    97         // Skip program name
     97        /* Skip program name */
    9898        --argc; ++argv;
    9999       
     
    171171        assert(argc == 1);
    172172       
    173         // Display common things by default
     173        /* Display common things by default */
    174174        if ((arg_flags & ARG_ALL) == 0) {
    175175                arg_flags = ARG_COMMON;
  • uspace/app/testread/testread.c

    r5bd1ffb r1a86c50  
    8484        }
    8585       
    86         // Skip program name
     86        /* Skip program name */
    8787        --argc; ++argv;
    8888       
Note: See TracChangeset for help on using the changeset viewer.