mirror of
https://github.com/cc65/cc65.git
synced 2024-12-28 22:30:12 +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:
parent
5bf9ccb19c
commit
b45b6789a4
@ -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));
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user