Changes in uspace/srv/hid/compositor/compositor.c [cf02eaf:3b98311] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/compositor/compositor.c
rcf02eaf r3b98311 2172 2172 /* Establish input bidirectional connection. */ 2173 2173 rc = input_connect(input_svc); 2174 if (rc != EOK) { 2175 printf("%s: Failed to connect to input service.\n", NAME); 2174 if (rc != EOK) 2176 2175 return rc; 2177 }2178 2176 2179 2177 /* Create viewports and connect them to visualizers. */ … … 2181 2179 rc = loc_category_get_id("visualizer", &cat_id, IPC_FLAG_BLOCKING); 2182 2180 if (rc != EOK) { 2183 printf("%s: Failed to get visualizer category.\n", NAME);2184 2181 input_disconnect(); 2185 2182 return -1; … … 2190 2187 rc = loc_category_get_svcs(cat_id, &svcs, &svcs_cnt); 2191 2188 if (rc != EOK || svcs_cnt == 0) { 2192 printf("%s: Failed to get visualizer category services.\n", NAME);2193 2189 input_disconnect(); 2194 2190 return -1; … … 2207 2203 2208 2204 if (list_empty(&viewport_list)) { 2209 printf("%s: Failed to get viewports.\n", NAME);2210 2205 input_disconnect(); 2211 2206 return -1;
Note:
See TracChangeset
for help on using the changeset viewer.