mirror of
https://github.com/cc65/cc65.git
synced 2025-01-03 16:33:19 +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:
parent
07cd427110
commit
e9be9e3d63
@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user