From: uz Date: Thu, 8 Oct 2009 11:35:34 +0000 (+0000) Subject: Use the new InvArg function. X-Git-Tag: V2.13.1~176 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=b19a29f80b907a28558c7eae594aca22a32ac158;p=cc65 Use the new InvArg function. git-svn-id: svn://svn.cc65.org/cc65/trunk@4346 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- 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 */