Ignore:
Timestamp:
2018-03-26T20:04:11Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
eb748a0
Parents:
b752a31
Message:

Modify PADDn macros so that their use is easier to parse.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/printf/printf_core.c

    rb752a31 raf60409  
    800800                                counter += retval;
    801801                                j = nxt;
    802                                 goto next_char;
     802                                continue;
    803803                        case 'c':
    804804                                if (qualifier == PrintfQualifierLong)
     
    810810                                        counter = -counter;
    811811                                        goto out;
    812                                 };
     812                                }
    813813
    814814                                counter += retval;
    815815                                j = nxt;
    816                                 goto next_char;
     816                                continue;
    817817
    818818                        /*
     
    851851                        case '%':
    852852                                j = i;
    853                                 goto next_char;
     853                                continue;
    854854
    855855                        /*
     
    861861                                 * so we will print whole bad format sequence.
    862862                                 */
    863                                 goto next_char;
     863                                continue;
    864864                        }
    865865
     
    917917                        j = nxt;
    918918                }
    919 next_char:
    920                 ;
    921919        }
    922920
Note: See TracChangeset for help on using the changeset viewer.