mirror of
https://github.com/labwc/labwc.git
synced 2025-11-05 13:29:58 -05:00
Remove some line terminators from log messages
This commit is contained in:
parent
ec271dcd57
commit
7b1af3036c
4 changed files with 7 additions and 7 deletions
|
|
@ -21,11 +21,11 @@ find_default_config(void)
|
|||
struct touch_config_entry *
|
||||
touch_find_config_for_device(char *device_name)
|
||||
{
|
||||
wlr_log(WLR_INFO, "find touch configuration for %s\n", device_name);
|
||||
wlr_log(WLR_INFO, "find touch configuration for %s", device_name);
|
||||
struct touch_config_entry *entry;
|
||||
wl_list_for_each(entry, &rc.touch_configs, link) {
|
||||
if (entry->device_name && !strcasecmp(entry->device_name, device_name)) {
|
||||
wlr_log(WLR_INFO, "found touch configuration for %s\n", device_name);
|
||||
wlr_log(WLR_INFO, "found touch configuration for %s", device_name);
|
||||
return entry;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue