]> git.sur5r.net Git - cc65/commitdiff
Removed the Next pointer which is no longer necessary.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 6 Aug 2011 12:32:10 +0000 (12:32 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 6 Aug 2011 12:32:10 +0000 (12:32 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5126 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ld65/library.c

index e9ac7b93baa7e28c70331a68d058582790ae540e..c99b7dbba20d34a7265fc5999459679bf3542181 100644 (file)
@@ -65,7 +65,6 @@
 /* Library data structure */
 typedef struct Library Library;
 struct Library {
-    Library*    Next;
     unsigned    Name;           /* String id of the name */
     FILE*       F;              /* Open file stream */
     LibHeader   Header;         /* Library header */
@@ -93,7 +92,6 @@ static Library* NewLibrary (FILE* F, const char* Name)
     Library* L = xmalloc (sizeof (*L));
 
     /* Initialize the fields */
-    L->Next     = 0;
     L->Name     = GetStringId (Name);
     L->F        = F;
     L->Modules  = EmptyCollection;
@@ -387,7 +385,7 @@ static void LibResolve (void)
                  */
                 ObjReadSections (L->F, O->Start + O->Header.SegOffs, O);
 
-                /* Read the scope table from the object file. Scopes reference 
+                /* Read the scope table from the object file. Scopes reference
                  * segments, so we must read them after the sections.
                  */
                 ObjReadScopes (L->F, O->Start + O->Header.ScopeOffs, O);