From c76db08204eb1aaaef85e6342cc2d9fdc270050b Mon Sep 17 00:00:00 2001 From: AnErrupTion Date: Wed, 20 Apr 2022 00:41:02 +0200 Subject: [PATCH] Fix error --- src/inputs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/inputs.c b/src/inputs.c index 36259e6..3f3209c 100644 --- a/src/inputs.c +++ b/src/inputs.c @@ -199,7 +199,7 @@ void input_desktop_add( if (strstr(name, " ") != NULL) { - name = strtok(name_simple, " "); + name = strtok(name, " "); } for (int i = 0; i < name_len; i++)