1
0
mirror of https://github.com/cc65/cc65.git synced 2024-10-01 00:57:11 +00:00

Use "lib" instead of "library".

git-svn-id: svn://svn.cc65.org/cc65/trunk@5137 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2011-08-08 17:18:52 +00:00
parent 07cd427110
commit e9be9e3d63

View File

@ -432,7 +432,7 @@ static void LibResolve (void)
if (CollCount (&L->Modules) > 0) {
CloseLibrary (L);
L->Id = CollCount (&LibraryList);
CollAppend (&LibraryList, L);
CollAppend (&LibraryList, L);
} else {
/* Delete the library */
FreeLibrary (L);
@ -545,7 +545,7 @@ void PrintDbgLibraries (FILE* F)
const Library* L = CollAtUnchecked (&LibraryList, I);
/* Output the info */
fprintf (F, "library\tid=%u,name=\"%s\"\n", L->Id, GetString (L->Name));
fprintf (F, "lib\tid=%u,name=\"%s\"\n", L->Id, GetString (L->Name));
}
}