Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/genarch/src/fb/fb.c

    r11b285d red88c8e  
    122122} fb_instance_t;
    123123
    124 static void fb_putchar(outdev_t *, wchar_t);
     124static void fb_putwchar(outdev_t *, wchar_t);
    125125static void fb_redraw(outdev_t *);
    126126static void fb_scroll_up(outdev_t *);
     
    128128
    129129static outdev_operations_t fbdev_ops = {
    130         .write = fb_putchar,
     130        .write = fb_putwchar,
    131131        .redraw = fb_redraw,
    132132        .scroll_up = fb_scroll_up,
     
    410410 *
    411411 */
    412 static void fb_putchar(outdev_t *dev, wchar_t ch)
     412static void fb_putwchar(outdev_t *dev, wchar_t ch)
    413413{
    414414        fb_instance_t *instance = (fb_instance_t *) dev->data;
Note: See TracChangeset for help on using the changeset viewer.