From b19a29f80b907a28558c7eae594aca22a32ac158 Mon Sep 17 00:00:00 2001 From: uz Date: Thu, 8 Oct 2009 11:35:34 +0000 Subject: [PATCH] Use the new InvArg function. git-svn-id: svn://svn.cc65.org/cc65/trunk@4346 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/ca65/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ca65/main.c b/src/ca65/main.c index 911be7315..54575937a 100644 --- a/src/ca65/main.c +++ b/src/ca65/main.c @@ -420,7 +420,7 @@ static void OptListBytes (const char* Opt, const char* Arg) /* Convert the argument to a number */ if (sscanf (Arg, "%u%c", &Num, &Check) != 1) { - AbEnd ("Invalid argument for option `%s'", Opt); + InvArg (Opt, Arg); } /* Check the bounds */ -- 2.39.2