]> git.sur5r.net Git - cc65/commitdiff
Use the new InvArg function.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 8 Oct 2009 11:35:34 +0000 (11:35 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 8 Oct 2009 11:35:34 +0000 (11:35 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@4346 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ca65/main.c

index 911be731552ead4f8df35cb58602f97688e469b9..54575937a7de8841e465ede21c60af33e05f7987 100644 (file)
@@ -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 */