]> git.sur5r.net Git - cc65/commitdiff
Fixed a C99ism.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 9 Aug 2010 05:47:22 +0000 (05:47 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 9 Aug 2010 05:47:22 +0000 (05:47 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@4799 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ld65/segments.c

index 25959ff5634a0f6d504e8e01e1221e62f41f0663..f9154e194237ef2626cdc0f83ce9a9e9dbdd61e0 100644 (file)
@@ -487,16 +487,18 @@ void SegWrite (const char* TgtName, FILE* Tgt, Segment* S, SegWriteFunc F, void*
 /* Write the data from the given segment to a file. For expressions, F is
  * 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;