main: “title%s” -> “title=%s”

Fix regression of --title,-T option. This broken when command line
parsing was switched to using overrides, in
0b4f1b4af2.

Closes #1457
This commit is contained in:
Daniel Eklöf 2023-08-05 07:23:11 +02:00
parent d00a2a222e
commit 5334e3d1aa
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

2
main.c
View file

@ -263,7 +263,7 @@ main(int argc, char *const *argv)
break;
case 'T':
tll_push_back(overrides, xasprintf("title%s", optarg));
tll_push_back(overrides, xasprintf("title=%s", optarg));
break;
case 'a':