diff options
-rw-r--r-- | hwdb/70-mouse.hwdb | 5 | ||||
-rw-r--r-- | src/gpt-auto-generator/gpt-auto-generator.c | 2 | ||||
-rw-r--r-- | src/sysctl/sysctl.c | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/hwdb/70-mouse.hwdb b/hwdb/70-mouse.hwdb index 680cb1ed7b..4592a449ea 100644 --- a/hwdb/70-mouse.hwdb +++ b/hwdb/70-mouse.hwdb @@ -282,6 +282,11 @@ mouse:usb:v046dp4027:name:Logitech T620: mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:4027: MOUSE_DPI=1200@250 +# Logitech LX8 Cordless Laser Mouse +mouse:usb:v046dpc51b:name:Logitech USB Receiver: + MOUSE_DPI=1300@125 + MOUSE_WHEEL_CLICK_ANGLE=15 + # Logitech ZoneTouch Mouse T400 mouse:usb:v046dp4026:name:Logitech T400: mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:4026: diff --git a/src/gpt-auto-generator/gpt-auto-generator.c b/src/gpt-auto-generator/gpt-auto-generator.c index 50acb7595c..9d889c17d8 100644 --- a/src/gpt-auto-generator/gpt-auto-generator.c +++ b/src/gpt-auto-generator/gpt-auto-generator.c @@ -250,7 +250,7 @@ static int add_automount( const char *description, usec_t timeout) { - _cleanup_free_ char *unit = NULL, *lnk = NULL, *crypto_what = NULL; + _cleanup_free_ char *unit = NULL, *lnk = NULL; _cleanup_free_ char *opt, *p = NULL; _cleanup_fclose_ FILE *f = NULL; int r; diff --git a/src/sysctl/sysctl.c b/src/sysctl/sysctl.c index ee0f57cfec..618844382f 100644 --- a/src/sysctl/sysctl.c +++ b/src/sysctl/sysctl.c @@ -52,7 +52,7 @@ static int apply_all(Hashmap *sysctl_options) { k = sysctl_write(property, value); if (k < 0) { log_full_errno(k == -ENOENT ? LOG_INFO : LOG_WARNING, k, - "Failed to write '%s' to '%s': %m", value, property); + "Couldn't write '%s' to '%s', ignoring: %m", value, property); if (r == 0 && k != -ENOENT) r = k; |