commit 24e240642984a3b7ee2fba0828eb4375e901aafc
parent b8261ab24bbc8159deffadb78f5108a612d27534
Author: Tony Crisci <tony@dubstepdish.com>
Date: Sat, 16 Dec 2017 13:00:31 -0500
strip whitespace for device id
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/sway/input/input-manager.c b/sway/input/input-manager.c
@@ -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) {