From ef742269931a36142facca4e42d938ce7fd4257a Mon Sep 17 00:00:00 2001 From: mrdudz Date: Tue, 11 May 2021 13:37:53 +0200 Subject: [PATCH] improve error message --- src/cc65/pragma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cc65/pragma.c b/src/cc65/pragma.c index 249e4f1b4..84869e60f 100644 --- a/src/cc65/pragma.c +++ b/src/cc65/pragma.c @@ -532,7 +532,7 @@ static void WrappedCallPragma (StrBuf* B) /* Skip the following comma */ if (!GetComma (B)) { /* Error already flagged by GetComma */ - Error ("Value required for wrapped-call identifier"); + Error ("Value or the word 'bank' required for wrapped-call identifier"); goto ExitPoint; }