From c7aae0d3d8fc0708a3039fe4c02f8f45ac490bb2 Mon Sep 17 00:00:00 2001 From: cuz Date: Sun, 29 Jun 2008 20:13:37 +0000 Subject: [PATCH] Fixed an error in .out git-svn-id: svn://svn.cc65.org/cc65/trunk@3846 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/ca65/pseudo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ca65/pseudo.c b/src/ca65/pseudo.c index 0c9a2fa11..a5f1d8402 100644 --- a/src/ca65/pseudo.c +++ b/src/ca65/pseudo.c @@ -1302,7 +1302,7 @@ static void DoOut (void) /* Output the string and be sure to flush the output to keep it in * sync with any error messages if the output is redirected to a file. */ - printf ("%m%p\n", &SVal); + printf ("%*s\n", SB_GetLen (&SVal), SB_GetConstBuf (&SVal)); fflush (stdout); NextTok (); } -- 2.39.5