From f0266283299882502803e8f510732f0dc79ffc41 Mon Sep 17 00:00:00 2001 From: Graeme Geldenhuys Date: Mon, 29 Jun 2026 12:19:14 +0100 Subject: [PATCH] fix(kanban): add parens to statement-position PrintUsage call Commit 50b8d75e made parentheses mandatory on statement-position calls, but kanban_app.pas was not updated, so 'PrintUsage' (a bare reference in the --help branch) failed to parse with 'Bare reference to PrintUsage requires () for a call'. This broke a plain 'pasbuild compile', which reaches blaise-kanban before blaise-bif-coverage. Add the parens. --- tools/kanban/src/main/pascal/kanban_app.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/kanban/src/main/pascal/kanban_app.pas b/tools/kanban/src/main/pascal/kanban_app.pas index 501438c..df79f09 100644 --- a/tools/kanban/src/main/pascal/kanban_app.pas +++ b/tools/kanban/src/main/pascal/kanban_app.pas @@ -67,7 +67,7 @@ begin Arg := ParamStr(I); if (Arg = '--help') or (Arg = '-h') then - PrintUsage + PrintUsage() else if Arg = '--add' then begin