Changeset 907d91a in mainline


Ignore:
Timestamp:
2017-04-03T05:10:03Z (7 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4b583f4
Parents:
e330da6e
Message:

Add missing breaks and decode the next character

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • boot/generic/src/printf_core.c

    re330da6e r907d91a  
    611611                                else
    612612                                        qualifier = PrintfQualifierLongLong;
     613                                i = nxt;
     614                                uc = str_decode(fmt, &nxt, STR_NO_LIMIT);
     615                                break;
    613616                        case 'h':
    614617                                /* Char or short */
  • kernel/generic/src/printf/printf_core.c

    re330da6e r907d91a  
    739739                                else
    740740                                        qualifier = PrintfQualifierLongLong;
     741                                i = nxt;
     742                                uc = str_decode(fmt, &nxt, STR_NO_LIMIT);
     743                                break;
    741744                        case 'h':
    742745                                /* Char or short */
  • uspace/lib/c/generic/io/printf_core.c

    re330da6e r907d91a  
    14541454                                else
    14551455                                        qualifier = PrintfQualifierLongLong;
     1456                                i = nxt;
     1457                                uc = str_decode(fmt, &nxt, STR_NO_LIMIT);
     1458                                break;
    14561459                        case 'h':
    14571460                                /* Char or short */
Note: See TracChangeset for help on using the changeset viewer.