Ignore:
Timestamp:
2018-05-29T13:25:07Z (6 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
  • kernel/genarch/src/drivers/dsrln/dsrlnout.c

    ra57fa32 red88c8e  
    4949} dsrlnout_instance_t;
    5050
    51 static void dsrlnout_putchar(outdev_t *dev, const wchar_t ch)
     51static void dsrlnout_putwchar(outdev_t *dev, const wchar_t ch)
    5252{
    5353        dsrlnout_instance_t *instance = (dsrlnout_instance_t *) dev->data;
     
    6262
    6363static outdev_operations_t dsrlndev_ops = {
    64         .write = dsrlnout_putchar,
     64        .write = dsrlnout_putwchar,
    6565        .redraw = NULL,
    6666        .scroll_up = NULL,
Note: See TracChangeset for help on using the changeset viewer.