Changeset 96858e8 in mainline


Ignore:
Timestamp:
2007-10-03T06:44:37Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5b5d25f
Parents:
40676a2
Message:

Fix cstyle in console.c.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/console/console.c

    r40676a2 r96858e8  
    139139/** Check key and process special keys.
    140140 *
    141  * */
     141 *
     142 */
    142143static void write_char(int console, char key)
    143144{
     
    377378
    378379        if ((consnum = find_free_connection()) == -1) {
    379                 ipc_answer_fast(iid,ELIMIT,0,0);
     380                ipc_answer_fast(iid, ELIMIT, 0, 0);
    380381                return;
    381382        }
     
    396397                async_serialize_start();
    397398
    398                 arg1 = arg2 = 0;
     399                arg1 = 0;
     400                arg2 = 0;
    399401                switch (IPC_GET_METHOD(call)) {
    400402                case IPC_M_PHONE_HUNGUP:
Note: See TracChangeset for help on using the changeset viewer.