]> git.sur5r.net Git - cc65/blobdiff - src/cc65/litpool.c
Bugfix
[cc65] / src / cc65 / litpool.c
index 2ba2d745658693bdb4b29fd6a4d80df6f1f2c18e..f57e9441330e4b4ca5d7891fb70ebd5ce2d57bc9 100644 (file)
@@ -103,16 +103,13 @@ void DumpLiteralPool (void)
     }
 
     /* Define the label */
-    g_defloclabel (LiteralPoolLabel);
+    g_defdatalabel (LiteralPoolLabel);
 
     /* Translate the buffer contents into the target charset */
     TranslateLiteralPool (0);
 
     /* Output the buffer data */
     g_defbytes (LiteralPoolBuf, LiteralPoolOffs);
-
-    /* Switch back to the code segment */
-    g_usecode ();
 }