]> git.sur5r.net Git - cc65/commitdiff
Fixed an error in .out
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 29 Jun 2008 20:13:37 +0000 (20:13 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 29 Jun 2008 20:13:37 +0000 (20:13 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@3846 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ca65/pseudo.c

index 0c9a2fa111eaf443def235a7945755e94c427af4..a5f1d84022af9b125e5e72565da69b74d3bad5cb 100644 (file)
@@ -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 ();
     }