From 327e95a3c845bc3d13675c1c7a34d3a88f63c161 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Wed, 20 Jun 2001 02:07:20 +0000 Subject: [PATCH] gcc 3.0 fixes --- tools/qfcc/source/qfcc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/qfcc/source/qfcc.c b/tools/qfcc/source/qfcc.c index 7fec34a80..84c5f4f11 100644 --- a/tools/qfcc/source/qfcc.c +++ b/tools/qfcc/source/qfcc.c @@ -476,7 +476,7 @@ PR_GlobalStringNoContents (gofs_t ofs) def = pr_global_defs[ofs]; if (!def) { // Error ("PR_GlobalString: no def for %i", ofs); - sprintf (line, "%i(???)", ofs); + sprintf (line, "%i(\?\?\?)", ofs); } else { sprintf (line, "%i(%s)", ofs, def->name); }