Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/netecho/netecho.c

    r87822ce r28a5ebd  
    121121{
    122122        cons_event_t ev;
    123         errno_t rc;
    124123
    125124        printf("Communication started. Press Ctrl-Q to quit.\n");
     
    129128        done = false;
    130129        while (!done) {
    131                 rc = console_get_event(con, &ev);
    132                 if (rc != EOK)
    133                         break;
    134 
     130                console_get_event(con, &ev);
    135131                if (ev.type == CEV_KEY && ev.ev.key.type == KEY_PRESS)
    136132                        key_handle(&ev.ev.key);
Note: See TracChangeset for help on using the changeset viewer.