Changeset ce3efa0 in mainline for uspace/srv/hid/console/console.c


Ignore:
Timestamp:
2014-08-12T16:49:25Z (10 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
593e023
Parents:
f6ab787
Message:

cstyle
(no change in functionality)

File:
1 edited

Legend:

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

    rf6ab787 rce3efa0  
    377377                }
    378378        }
    379 
     379       
    380380        return size;
    381381}
     
    388388        while (off < size)
    389389                cons_write_char(cons, str_decode(data, &off, size));
     390       
    390391        return size;
    391392}
     
    498499        event->type = CEV_KEY;
    499500        event->ev.key = *kevent;
     501       
    500502        free(kevent);
    501503        return EOK;
     
    526528        con_conn(iid, icall, &cons->srvs);
    527529}
    528 
    529530
    530531static int input_connect(const char *svc)
     
    583584static bool console_srv_init(char *input_svc, char *output_svc)
    584585{
    585         int rc;
    586        
    587586        /* Connect to input service */
    588         rc = input_connect(input_svc);
     587        int rc = input_connect(input_svc);
    589588        if (rc != EOK)
    590589                return false;
Note: See TracChangeset for help on using the changeset viewer.