Changeset ed88c8e in mainline for boot/generic/src


Ignore:
Timestamp:
2018-05-29T13:25:07Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
fc0b2a8
Parents:
a57fa32
git-author:
Jiri Svoboda <jiri@…> (2018-05-28 17:24:17)
git-committer:
Jiri Svoboda <jiri@…> (2018-05-29 13:25:07)
Message:

fputc, putchar vs. fputwc, putwchar.

File:
1 edited

Legend:

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

    ra57fa32 red88c8e  
    4242
    4343        while (offset < size) {
    44                 putchar(str_decode(str, &offset, size));
     44                putwchar(str_decode(str, &offset, size));
    4545                chars++;
    4646        }
     
    5656
    5757        while ((uc = str_decode(str, &offset, STR_NO_LIMIT)) != 0) {
    58                 putchar(uc);
     58                putwchar(uc);
    5959                chars++;
    6060        }
    6161
    62         putchar('\n');
     62        putwchar('\n');
    6363        return chars;
    6464}
Note: See TracChangeset for help on using the changeset viewer.