Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/io/console.c

    r5d94b16c r9d58539  
    3838#include <async.h>
    3939#include <errno.h>
     40#include <stdio.h>
    4041#include <malloc.h>
    4142#include <vfs/vfs_sess.h>
     
    125126{
    126127        async_exch_t *exch = async_exchange_begin(ctrl->output_sess);
    127         async_req_1_0(exch, CONSOLE_SET_CURSOR_VISIBILITY, (show != false));
     128        async_req_1_0(exch, CONSOLE_CURSOR_VISIBILITY, (show != false));
    128129        async_exchange_end(exch);
    129130}
     
    150151{
    151152        async_exch_t *exch = async_exchange_begin(ctrl->output_sess);
    152         async_req_2_0(exch, CONSOLE_SET_POS, col, row);
     153        async_req_2_0(exch, CONSOLE_GOTO, col, row);
    153154        async_exchange_end(exch);
    154155}
Note: See TracChangeset for help on using the changeset viewer.