Changes in uspace/app/mkbd/main.c [fec7ba0:87822ce] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/mkbd/main.c

    rfec7ba0 r87822ce  
    174174        while (true) {
    175175                cons_event_t ev;
    176                 bool ok = console_get_event(con, &ev);
    177                 if (!ok) {
     176                errno_t rc = console_get_event(con, &ev);
     177                if (rc != EOK) {
    178178                        printf("Connection with console broken: %s.\n",
    179179                            str_error(errno));
Note: See TracChangeset for help on using the changeset viewer.