Changeset 78445be8 in mainline for uspace/srv/hid/display/input.c


Ignore:
Timestamp:
2020-06-24T22:48:37Z (4 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
de19d4a
Parents:
8630748
Message:

Log message strings should not have a newline at the end

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/display/input.c

    r8630748 r78445be8  
    153153        errno_t rc = loc_service_get_id(svc, &dsid, 0);
    154154        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",
    156156                    svc);
    157157                return rc;
     
    161161        if (sess == NULL) {
    162162                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);
    164164                return EIO;
    165165        }
     
    170170                async_hangup(sess);
    171171                log_msg(LOG_DEFAULT, LVL_ERROR,
    172                     "Unable to communicate with service %s (%s)\n",
     172                    "Unable to communicate with service %s (%s)",
    173173                    svc, str_error(rc));
    174174                return rc;
Note: See TracChangeset for help on using the changeset viewer.