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