Changeset af60409 in mainline for kernel/generic/src/printf/printf_core.c
- Timestamp:
- 2018-03-26T20:04:11Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- eb748a0
- Parents:
- b752a31
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/printf/printf_core.c
rb752a31 raf60409 800 800 counter += retval; 801 801 j = nxt; 802 goto next_char;802 continue; 803 803 case 'c': 804 804 if (qualifier == PrintfQualifierLong) … … 810 810 counter = -counter; 811 811 goto out; 812 } ;812 } 813 813 814 814 counter += retval; 815 815 j = nxt; 816 goto next_char;816 continue; 817 817 818 818 /* … … 851 851 case '%': 852 852 j = i; 853 goto next_char;853 continue; 854 854 855 855 /* … … 861 861 * so we will print whole bad format sequence. 862 862 */ 863 goto next_char;863 continue; 864 864 } 865 865 … … 917 917 j = nxt; 918 918 } 919 next_char:920 ;921 919 } 922 920
Note:
See TracChangeset
for help on using the changeset viewer.