1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-25 13:29:41 +00:00

In general "\%s" doesn't seem to be a valid printf format specifier. Given where it originally came from and how OneLine() is used elsewhere I'm pretty sure that it should rather read "%s".

This commit is contained in:
Oliver Schmidt 2013-04-26 21:54:54 +02:00
parent 5bf9ccb19c
commit b45b6789a4

View File

@ -627,7 +627,7 @@ void OH_SpecialPage (const OpcDesc* D)
GenerateLabel (D->Flags, Addr);
/* OneLine (D, "$FF%02X", (CodeByte (PC+1)); */
OneLine (D, "\%s", GetAddrArg (D->Flags, Addr));
OneLine (D, "%s", GetAddrArg (D->Flags, Addr));
}