Ignore:
Timestamp:
2018-04-04T15:42:37Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2c4e1cc
Parents:
47b2d7e3
Message:

Fix cstyle: make ccheck-fix and commit only files where all the changes are good.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/cmds/modules/printf/printf.c

    r47b2d7e3 r1433ecda  
    6969 * @param arg string with data to print.
    7070 */
    71 static int print_arg(wchar_t ch, const char* arg)
     71static int print_arg(wchar_t ch, const char *arg)
    7272{
    73         switch(ch) {
     73        switch (ch) {
    7474        case 'd':
    7575                printf("%d", (int)(strtol(arg, NULL, 10)));
     
    9696static int process_ctl(wchar_t ch)
    9797{
    98         switch(ch) {
     98        switch (ch) {
    9999        case 'n':
    100100                printf("\n");
     
    120120{
    121121        unsigned int argc;
    122         char* fmt;
     122        char *fmt;
    123123        size_t pos, fmt_sz;
    124124        wchar_t ch;
     
    142142
    143143        while ((ch = str_decode(fmt, &pos, fmt_sz))) {
    144                 switch(ch) {
     144                switch (ch) {
    145145
    146146                case '\\':
Note: See TracChangeset for help on using the changeset viewer.