Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/console/src/console.c

    r69c376b5 r899bdfd  
    193193                event->ev.key.mods = ipc_get_arg4(call);
    194194                event->ev.key.c = ipc_get_arg5(call);
    195                 break;
     195                return EOK;
    196196        case CEV_POS:
    197197                event->ev.pos.pos_id = ipc_get_arg2(call) >> 16;
     
    200200                event->ev.pos.hpos = ipc_get_arg4(call);
    201201                event->ev.pos.vpos = ipc_get_arg5(call);
    202                 break;
    203         default:
    204                 return EIO;
    205         }
    206 
    207         return EOK;
     202                return EOK;
     203        case CEV_RESIZE:
     204                return EOK;
     205        }
     206
     207        return EIO;
    208208}
    209209
Note: See TracChangeset for help on using the changeset viewer.