mirror of
https://github.com/cc65/cc65.git
synced 2025-08-08 22:25:28 +00:00
Fixed a C99ism.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4799 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -488,15 +488,17 @@ void SegWrite (const char* TgtName, FILE* Tgt, Segment* S, SegWriteFunc F, void*
|
||||
* called (see description of SegWriteFunc above).
|
||||
*/
|
||||
{
|
||||
int Sign;
|
||||
Section* Sec;
|
||||
int Sign;
|
||||
unsigned long Offs = 0;
|
||||
|
||||
|
||||
/* Remember the output file and offset for the segment */
|
||||
S->OutputName = TgtName;
|
||||
S->OutputOffs = (unsigned long) ftell (Tgt);
|
||||
|
||||
/* Loop over all sections in this segment */
|
||||
Section* Sec = S->SecRoot;
|
||||
Sec = S->SecRoot;
|
||||
while (Sec) {
|
||||
Fragment* Frag;
|
||||
|
||||
|
Reference in New Issue
Block a user