Changeset 5ef16903 in mainline for uspace/srv/devman


Ignore:
Timestamp:
2018-03-10T21:56:20Z (8 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
338d54a7
Parents:
53ad43c
Message:

ccheck found these backslashes incorrectly placed in C code.

Location:
uspace/srv/devman
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/devman/drv_conn.c

    r53ad43c r5ef16903  
    143143        fid_t fid = fibril_create(init_running_drv, driver);
    144144        if (fid == 0) {
    145                 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed to create initialization fibril " \
     145                log_msg(LOG_DEFAULT, LVL_ERROR, "Failed to create initialization fibril "
    146146                    "for driver `%s'.", driver->name);
    147147                fibril_mutex_unlock(&driver->driver_mutex);
  • uspace/srv/devman/main.c

    r53ad43c r5ef16903  
    114114
    115115        if (driver == NULL) {
    116                 log_msg(LOG_DEFAULT, LVL_ERROR, "IPC forwarding refused - " \
     116                log_msg(LOG_DEFAULT, LVL_ERROR, "IPC forwarding refused - "
    117117                    "the device %" PRIun " is not in usable state.", handle);
    118118                async_answer_0(iid, ENOENT);
     
    194194
    195195        if (driver == NULL) {
    196                 log_msg(LOG_DEFAULT, LVL_ERROR, "IPC forwarding refused - " \
     196                log_msg(LOG_DEFAULT, LVL_ERROR, "IPC forwarding refused - "
    197197                    "the device %" PRIun " is not in usable state.", handle);
    198198                async_answer_0(iid, ENOENT);
Note: See TracChangeset for help on using the changeset viewer.