Ignore:
Timestamp:
2013-09-02T20:14:11Z (11 years ago)
Author:
Dominik Taborsky (AT DOT) <brembyseznamcz>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8c95dff
Parents:
0435fe41 (diff), 61ab4a9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

mainline update

File:
1 edited

Legend:

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

    r0435fe41 r802898f  
    21722172        /* Establish input bidirectional connection. */
    21732173        rc = input_connect(input_svc);
    2174         if (rc != EOK)
     2174        if (rc != EOK) {
     2175                printf("%s: Failed to connect to input service.\n", NAME);
    21752176                return rc;
     2177        }
    21762178
    21772179        /* Create viewports and connect them to visualizers. */
     
    21792181        rc = loc_category_get_id("visualizer", &cat_id, IPC_FLAG_BLOCKING);
    21802182        if (rc != EOK) {
     2183                printf("%s: Failed to get visualizer category.\n", NAME);
    21812184                input_disconnect();
    21822185                return -1;
     
    21872190        rc = loc_category_get_svcs(cat_id, &svcs, &svcs_cnt);
    21882191        if (rc != EOK || svcs_cnt == 0) {
     2192                printf("%s: Failed to get visualizer category services.\n", NAME);
    21892193                input_disconnect();
    21902194                return -1;
     
    22032207       
    22042208        if (list_empty(&viewport_list)) {
     2209                printf("%s: Failed to get viewports.\n", NAME);
    22052210                input_disconnect();
    22062211                return -1;
Note: See TracChangeset for help on using the changeset viewer.