1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-02 09:34:22 +00:00

Merge pull request #101 from groessler/something_to_pull

Fix error which slipped in in '-L' command line parameter handling.
This commit is contained in:
Oliver Schmidt 2014-03-29 16:08:09 +02:00
commit cfb7fa99ac

View File

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