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 12e0edd6e1
commit be22736f23
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':