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


Ignore:
File:
1 edited

Legend:

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

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