From 5334e3d1aae017a92cdd858d0e426ecb813afb55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sat, 5 Aug 2023 07:23:11 +0200 Subject: [PATCH] =?UTF-8?q?main:=20=E2=80=9Ctitle%s=E2=80=9D=20->=20?= =?UTF-8?q?=E2=80=9Ctitle=3D%s=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix regression of --title,-T option. This broken when command line parsing was switched to using overrides, in 0b4f1b4af20cea0afae39a2c1c4e42c22962dcde. Closes #1457 --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index 38e3c148..dffd2b2b 100644 --- a/main.c +++ b/main.c @@ -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':