mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 11:27:47 +03:00
stringop: fix has_prefix() arg order in config parsing
has_prefix() expects the prefix to be the 2nd argument, not the first.
The config parsing was broken when using `--input-device=`.
Introduced by: 0c60d1581f
"Use has_prefix()
instead of strncmp() throughout"
This commit is contained in:
parent
d148560f50
commit
4b185a0fe0
3 changed files with 3 additions and 3 deletions
|
@ -46,7 +46,7 @@ void ipc_send_workspace_command(struct swaybar *bar, const char *ws) {
|
|||
|
||||
char *parse_font(const char *font) {
|
||||
char *new_font = NULL;
|
||||
if (has_prefix("pango:", font)) {
|
||||
if (has_prefix(font, "pango:")) {
|
||||
font += strlen("pango:");
|
||||
}
|
||||
new_font = strdup(font);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue