Changes in uspace/srv/hid/compositor/compositor.c [3e6a98c5:428bd07] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/compositor/compositor.c
r3e6a98c5 r428bd07 2092 2092 /* Establish input bidirectional connection. */ 2093 2093 rc = input_connect(input_svc); 2094 if (rc != EOK) 2094 if (rc != EOK) { 2095 printf("%s: Failed to connect to input service.\n", NAME); 2095 2096 return rc; 2097 } 2096 2098 2097 2099 /* Create viewports and connect them to visualizers. */ … … 2099 2101 rc = loc_category_get_id("visualizer", &cat_id, IPC_FLAG_BLOCKING); 2100 2102 if (rc != EOK) { 2103 printf("%s: Failed to get visualizer category.\n", NAME); 2101 2104 input_disconnect(); 2102 2105 return -1; … … 2107 2110 rc = loc_category_get_svcs(cat_id, &svcs, &svcs_cnt); 2108 2111 if (rc != EOK || svcs_cnt == 0) { 2112 printf("%s: Failed to get visualizer category services.\n", NAME); 2109 2113 input_disconnect(); 2110 2114 return -1; … … 2123 2127 2124 2128 if (list_empty(&viewport_list)) { 2129 printf("%s: Failed to get view ports.\n", NAME); 2125 2130 input_disconnect(); 2126 2131 return -1;
Note:
See TracChangeset
for help on using the changeset viewer.