Ignore:
Timestamp:
2009-09-10T21:27:41Z (15 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8be2833
Parents:
6b89868
Message:

Fix argument order.

File:
1 edited

Legend:

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

    r6b89868 r9b11daef  
    4545}
    4646
    47 int console_get_size(int phone, ipcarg_t *rows, ipcarg_t *cols)
     47int console_get_size(int phone, ipcarg_t *cols, ipcarg_t *rows)
    4848{
    49         return async_req_0_2(phone, CONSOLE_GET_SIZE, rows, cols);
     49        return async_req_0_2(phone, CONSOLE_GET_SIZE, cols, rows);
    5050}
    5151
     
    8686}
    8787
    88 void console_goto(int phone, ipcarg_t row, ipcarg_t col)
     88void console_goto(int phone, ipcarg_t col, ipcarg_t row)
    8989{
    90         async_msg_2(phone, CONSOLE_GOTO, row, col);
     90        async_msg_2(phone, CONSOLE_GOTO, col, row);
    9191}
    9292
Note: See TracChangeset for help on using the changeset viewer.