Changeset 78445be8 in mainline for uspace/srv/hid/display/input.c
- Timestamp:
- 2020-06-24T22:48:37Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- de19d4a
- Parents:
- 8630748
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/display/input.c
r8630748 r78445be8 153 153 errno_t rc = loc_service_get_id(svc, &dsid, 0); 154 154 if (rc != EOK) { 155 log_msg(LOG_DEFAULT, LVL_ERROR, "Input service %s not found \n",155 log_msg(LOG_DEFAULT, LVL_ERROR, "Input service %s not found", 156 156 svc); 157 157 return rc; … … 161 161 if (sess == NULL) { 162 162 log_msg(LOG_DEFAULT, LVL_ERROR, 163 "Unable to connect to input service %s \n", svc);163 "Unable to connect to input service %s", svc); 164 164 return EIO; 165 165 } … … 170 170 async_hangup(sess); 171 171 log_msg(LOG_DEFAULT, LVL_ERROR, 172 "Unable to communicate with service %s (%s) \n",172 "Unable to communicate with service %s (%s)", 173 173 svc, str_error(rc)); 174 174 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.