From 34c768fcc55476fa94c997294477693c436b438b Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Thu, 30 Apr 2009 08:03:10 -0700 Subject: outbin: replace fprintf(rf, not_defined); with fputs(not_defined, rf); Some vendors get nervous about parameterized printf patterns; furthermore, it's completely unnecessary in this case. Signed-off-by: H. Peter Anvin --- output/outbin.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'output/outbin.c') diff --git a/output/outbin.c b/output/outbin.c index 71867c1e..fa4c9a31 100644 --- a/output/outbin.c +++ b/output/outbin.c @@ -582,7 +582,7 @@ static void bin_cleanup(int debuginfo) /* Step 7: Generate the map file. */ if (map_control) { - const char *not_defined = { "not defined" }; + static const char not_defined[] = "not defined"; /* Display input and output file names. */ fprintf(rf, "\n- NASM Map file "); @@ -636,22 +636,22 @@ static void bin_cleanup(int debuginfo) if (s->flags & ALIGN_DEFINED) fprintf(rf, "%16"PRIX64"", s->align); else - fprintf(rf, not_defined); + fputs(not_defined, rf); fprintf(rf, "\nfollows: "); if (s->flags & FOLLOWS_DEFINED) fprintf(rf, "%s", s->follows); else - fprintf(rf, not_defined); + fputs(not_defined, rf); fprintf(rf, "\nvstart: %16"PRIX64"\nvalign: ", s->vstart); if (s->flags & VALIGN_DEFINED) fprintf(rf, "%16"PRIX64"", s->valign); else - fprintf(rf, not_defined); + fputs(not_defined, rf); fprintf(rf, "\nvfollows: "); if (s->flags & VFOLLOWS_DEFINED) fprintf(rf, "%s", s->vfollows); else - fprintf(rf, not_defined); + fputs(not_defined, rf); fprintf(rf, "\n\n"); } } -- cgit v1.2.1