Ignore:
Timestamp:
2018-05-17T13:46:56Z (6 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4f8772d4
Parents:
7c3fb9b
git-author:
Jiri Svoboda <jiri@…> (2018-05-16 18:44:36)
git-committer:
Jiri Svoboda <jiri@…> (2018-05-17 13:46:56)
Message:

More comment fixing (ccheck).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/io/printf_core.c

    r7c3fb9b r6ff23ff  
    14991499
    15001500                        switch (uc) {
    1501                         /*
    1502                         * String and character conversions.
    1503                         */
     1501                                /*
     1502                                * String and character conversions.
     1503                                */
    15041504                        case 's':
    15051505                                precision = max(0,  precision);
     
    15331533                                continue;
    15341534
    1535                         /*
    1536                         * Floating point values
    1537                         */
     1535                                /*
     1536                                * Floating point values
     1537                                */
    15381538                        case 'G':
    15391539                        case 'g':
     
    15541554                                continue;
    15551555
    1556                         /*
    1557                         * Integer values
    1558                         */
     1556                                /*
     1557                                * Integer values
     1558                                */
    15591559                        case 'P':
    15601560                                /* Pointer */
     
    15861586                                break;
    15871587
    1588                         /* Percentile itself */
    15891588                        case '%':
     1589                                /* Percentile itself */
    15901590                                j = i;
    15911591                                continue;
    15921592
    1593                         /*
    1594                         * Bad formatting.
    1595                         */
     1593                                /*
     1594                                * Bad formatting.
     1595                                */
    15961596                        default:
    15971597                                /*
Note: See TracChangeset for help on using the changeset viewer.