1
0
mirror of https://github.com/cc65/cc65.git synced 2024-11-19 06:31:31 +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) { if (CollCount (&L->Modules) > 0) {
CloseLibrary (L); CloseLibrary (L);
L->Id = CollCount (&LibraryList); L->Id = CollCount (&LibraryList);
CollAppend (&LibraryList, L); CollAppend (&LibraryList, L);
} else { } else {
/* Delete the library */ /* Delete the library */
FreeLibrary (L); FreeLibrary (L);
@ -545,7 +545,7 @@ void PrintDbgLibraries (FILE* F)
const Library* L = CollAtUnchecked (&LibraryList, I); const Library* L = CollAtUnchecked (&LibraryList, I);
/* Output the info */ /* 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));
} }
} }