]> git.sur5r.net Git - cc65/blobdiff - src/cc65/litpool.c
Added the io module
[cc65] / src / cc65 / litpool.c
index 65c896d5859ca301adda712ba06db1db0c837c90..6243e38b5dbd50018a070ad91751420385c242c3 100644 (file)
@@ -167,7 +167,7 @@ const char* GetLiteral (unsigned Offs)
 /* Get a pointer to the literal with the given offset in the pool */
 {
     CHECK (Offs < LiteralOffs);
-    return &LiteralPool[Offs];
+    return (const char*) &LiteralPool[Offs];
 }