Changeset 78445be8 in mainline for uspace/srv/hid/display/output.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/output.c

    r8630748 r78445be8  
    6464        if (rc != EOK) {
    6565                log_msg(LOG_DEFAULT, LVL_ERROR,
    66                     "Error looking up category 'display-device'.\n");
     66                    "Error looking up category 'display-device'.");
    6767                return EIO;
    6868        }
     
    7474        if (rc != EOK) {
    7575                log_msg(LOG_DEFAULT, LVL_ERROR,
    76                     "Error getting list of display devices.\n");
     76                    "Error getting list of display devices.");
    7777                return EIO;
    7878        }
     
    9393                        if (rc != EOK) {
    9494                                log_msg(LOG_DEFAULT, LVL_ERROR,
    95                                     "Error adding display device.\n");
     95                                    "Error adding display device.");
    9696                                continue;
    9797                        }
     
    100100
    101101                        log_msg(LOG_DEFAULT, LVL_NOTE,
    102                             "Added display device '%lu'\n",
     102                            "Added display device '%lu'",
    103103                            (unsigned long) svcs[i]);
    104104                }
     
    155155        if (rc != EOK) {
    156156                log_msg(LOG_DEFAULT, LVL_ERROR,
    157                     "Failed registering callback for device discovery.\n");
     157                    "Failed registering callback for device discovery.");
    158158                return rc;
    159159        }
Note: See TracChangeset for help on using the changeset viewer.