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:
Paul Riou 2025-03-20 20:01:36 +00:00 committed by Simon Ser
parent d148560f50
commit 4b185a0fe0
3 changed files with 3 additions and 3 deletions

View file

@ -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);