Fixed wrong argument in inputs.s input_desktop (#469)

pull/473/head
Alfred Roos 1 year ago committed by GitHub
parent 33662480e9
commit 24f017e09c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -196,7 +196,7 @@ void input_desktop_add(
target->list[target->cur] = name;
int name_len = strlen(name);
char* name_simple = strdup(name_len);
char* name_simple = strdup(name);
if (strstr(name_simple, " ") != NULL)
{

Loading…
Cancel
Save