Save a few bytes when writing file list entries to the object file.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4929 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2011-01-27 16:40:48 +00:00
parent b2b1edc4ab
commit 713c019a24
2 changed files with 3 additions and 3 deletions

View File

@@ -265,7 +265,7 @@ void WriteFiles (void)
/* Write the fields */
ObjWriteVar (F->Name);
ObjWrite32 (F->MTime);
ObjWrite32 (F->Size);
ObjWriteVar (F->Size);
}
/* Done writing files */