Changeset e560ae8 in mainline


Ignore:
Timestamp:
2009-03-24T15:11:25Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
08b5601
Parents:
0dd772d
Message:

fix wrong assignment

File:
1 edited

Legend:

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

    r0dd772d re560ae8  
    613613                        do {
    614614                                i++;
    615                                 switch ((uc = utf8_decode(fmt, &i, UTF8_NO_LIMIT)) != 0) {
     615                                uc = utf8_decode(fmt, &i, UTF8_NO_LIMIT);
     616                                switch (uc) {
    616617                                case '#':
    617618                                        flags |= __PRINTF_FLAG_PREFIX;
Note: See TracChangeset for help on using the changeset viewer.