Changeset 84239b1 in mainline for uspace/lib/c/generic/io/printf_core.c
- Timestamp:
- 2018-03-11T19:39:11Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f3d47c97
- Parents:
- 850fd32
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/io/printf_core.c
r850fd32 r84239b1 1517 1517 counter += retval; 1518 1518 j = nxt; 1519 goto next_char;1519 continue; 1520 1520 case 'c': 1521 1521 if (qualifier == PrintfQualifierLong) … … 1527 1527 counter = -counter; 1528 1528 goto out; 1529 } ;1529 } 1530 1530 1531 1531 counter += retval; 1532 1532 j = nxt; 1533 goto next_char;1533 continue; 1534 1534 1535 1535 /* … … 1552 1552 counter += retval; 1553 1553 j = nxt; 1554 goto next_char;1554 continue; 1555 1555 1556 1556 /* … … 1589 1589 case '%': 1590 1590 j = i; 1591 goto next_char;1591 continue; 1592 1592 1593 1593 /* … … 1599 1599 * so we will print whole bad format sequence. 1600 1600 */ 1601 goto next_char;1601 continue; 1602 1602 } 1603 1603 … … 1655 1655 j = nxt; 1656 1656 } 1657 next_char:1658 ;1659 1657 } 1660 1658
Note:
See TracChangeset
for help on using the changeset viewer.