Ignore:
File:
1 edited

Legend:

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

    r428bd07 r3e6a98c5  
    20922092        /* Establish input bidirectional connection. */
    20932093        rc = input_connect(input_svc);
    2094         if (rc != EOK) {
    2095                 printf("%s: Failed to connect to input service.\n", NAME);
     2094        if (rc != EOK)
    20962095                return rc;
    2097         }
    20982096
    20992097        /* Create viewports and connect them to visualizers. */
     
    21012099        rc = loc_category_get_id("visualizer", &cat_id, IPC_FLAG_BLOCKING);
    21022100        if (rc != EOK) {
    2103                 printf("%s: Failed to get visualizer category.\n", NAME);
    21042101                input_disconnect();
    21052102                return -1;
     
    21102107        rc = loc_category_get_svcs(cat_id, &svcs, &svcs_cnt);
    21112108        if (rc != EOK || svcs_cnt == 0) {
    2112                 printf("%s: Failed to get visualizer category services.\n", NAME);
    21132109                input_disconnect();
    21142110                return -1;
     
    21272123       
    21282124        if (list_empty(&viewport_list)) {
    2129                 printf("%s: Failed to get view ports.\n", NAME);
    21302125                input_disconnect();
    21312126                return -1;
Note: See TracChangeset for help on using the changeset viewer.