strip whitespace for device id

This commit is contained in:
Tony Crisci 2017-12-16 13:00:31 -05:00
parent b8261ab24b
commit 24e2406429
1 changed files with 2 additions and 0 deletions

View File

@ -9,6 +9,7 @@
#include "sway/input/input-manager.h"
#include "sway/input/seat.h"
#include "sway/server.h"
#include "stringop.h"
#include "list.h"
#include "log.h"
@ -36,6 +37,7 @@ static char *get_device_identifier(struct wlr_input_device *device) {
int vendor = device->vendor;
int product = device->product;
char *name = strdup(device->name);
name = strip_whitespace(name);
char *p = name;
for (; *p; ++p) {