Ignore:
File:
1 edited

Legend:

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

    rcf02eaf r3b98311  
    21722172        /* Establish input bidirectional connection. */
    21732173        rc = input_connect(input_svc);
    2174         if (rc != EOK) {
    2175                 printf("%s: Failed to connect to input service.\n", NAME);
     2174        if (rc != EOK)
    21762175                return rc;
    2177         }
    21782176
    21792177        /* Create viewports and connect them to visualizers. */
     
    21812179        rc = loc_category_get_id("visualizer", &cat_id, IPC_FLAG_BLOCKING);
    21822180        if (rc != EOK) {
    2183                 printf("%s: Failed to get visualizer category.\n", NAME);
    21842181                input_disconnect();
    21852182                return -1;
     
    21902187        rc = loc_category_get_svcs(cat_id, &svcs, &svcs_cnt);
    21912188        if (rc != EOK || svcs_cnt == 0) {
    2192                 printf("%s: Failed to get visualizer category services.\n", NAME);
    21932189                input_disconnect();
    21942190                return -1;
     
    22072203       
    22082204        if (list_empty(&viewport_list)) {
    2209                 printf("%s: Failed to get viewports.\n", NAME);
    22102205                input_disconnect();
    22112206                return -1;
Note: See TracChangeset for help on using the changeset viewer.