From: michaelh Date: Sat, 8 Apr 2000 15:59:27 +0000 (+0000) Subject: Fixed weird characters due to extra %s X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=335e716901410667443532196789fb96107fd49b;p=fw%2Fsdcc Fixed weird characters due to extra %s git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@229 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/src/SDCCglue.c b/src/SDCCglue.c index 731e8368..47592004 100644 --- a/src/SDCCglue.c +++ b/src/SDCCglue.c @@ -1129,7 +1129,7 @@ void glue () * This area is guaranteed to follow the static area * by the ugly shucking and jiving about 20 lines ago. */ - tfprintf(asmFile, "\t!area %s\n", port->mem.post_static_name); + tfprintf(asmFile, "\t!area\n", port->mem.post_static_name); fprintf (asmFile,"\tljmp\t__sdcc_program_startup\n"); }