1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-12 02:30:44 +00:00

Fix error which slipped in in '-L' command line parameter handling.

This commit is contained in:
Christian Groessler 2014-03-28 22:40:32 +01:00
parent 435fd06bc6
commit 1a348ab73f

View File

@ -696,7 +696,7 @@ static void ParseCommandLine(void)
LabelFileName = GetArg (&I, 3); LabelFileName = GetArg (&I, 3);
break; break;
default: default:
OptLibPath (Arg, InputFiles[I].FileName); OptLibPath (Arg, GetArg (&I, 2));
break; break;
} }
break; break;