Changeset dda2602 in mainline for uspace/srv/hid/compositor/compositor.c
- Timestamp:
- 2019-08-03T09:41:07Z (5 years ago)
- Children:
- dd5c623
- Parents:
- c0e4fc50
- git-author:
- Michal Koutný <xm.koutny+hos@…> (2015-05-08 11:10:06)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-03 09:41:07)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/compositor/compositor.c
rc0e4fc50 rdda2602 2183 2183 async_sess_t *sess; 2184 2184 service_id_t dsid; 2185 2186 errno_t rc = loc_service_get_id(svc, &dsid, 0); 2185 unsigned int flags = IPC_FLAG_AUTOSTART; 2186 2187 errno_t rc = loc_service_get_id(svc, &dsid, flags); 2187 2188 if (rc != EOK) { 2188 2189 printf("%s: Input service %s not found\n", NAME, svc); … … 2190 2191 } 2191 2192 2192 sess = loc_service_connect(dsid, INTERFACE_INPUT, 0);2193 sess = loc_service_connect(dsid, INTERFACE_INPUT, flags); 2193 2194 if (sess == NULL) { 2194 2195 printf("%s: Unable to connect to input service %s\n", NAME,
Note:
See TracChangeset
for help on using the changeset viewer.