From b45b6789a461df8f6d6ce42ea2a35833e20ba922 Mon Sep 17 00:00:00 2001
From: Oliver Schmidt
Date: Fri, 26 Apr 2013 21:54:54 +0200
Subject: [PATCH] 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".
---
src/da65/handler.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/da65/handler.c b/src/da65/handler.c
index 37cc4fff6..ee27ae857 100644
--- a/src/da65/handler.c
+++ b/src/da65/handler.c
@@ -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));
}
--
2.39.5