]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
got rid of two trigraph warnings in gcc 3.0
authorlordhavoc <lordhavoc@d7cf8633-e32d-0410-b094-e92efae38249>
Thu, 8 Nov 2001 02:25:53 +0000 (02:25 +0000)
committerlordhavoc <lordhavoc@d7cf8633-e32d-0410-b094-e92efae38249>
Thu, 8 Nov 2001 02:25:53 +0000 (02:25 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@1010 d7cf8633-e32d-0410-b094-e92efae38249

pr_edict.c

index 382394dd5ccc2f171d368e9724309d515299f04e..c7e722abed5b5bfe761afcfe202c1f3e082c8a6a 100644 (file)
@@ -497,22 +497,22 @@ char *PR_GlobalString (int ofs)
        ddef_t  *def;
        void    *val;
        static char     line[128];
-       
+
        val = (void *)&pr_globals[ofs];
        def = ED_GlobalAtOfs(ofs);
        if (!def)
-               sprintf (line,"%i(???)", ofs);
+               sprintf (line,"%i(??\?)", ofs); // LordHavoc: escaping the third ? so it is not a trigraph
        else
        {
                s = PR_ValueString (def->type, val);
                sprintf (line,"%i(%s)%s", ofs, pr_strings + def->s_name, s);
        }
-       
+
        i = strlen(line);
        for ( ; i<20 ; i++)
                strcat (line," ");
        strcat (line," ");
-               
+
        return line;
 }
 
@@ -521,18 +521,18 @@ char *PR_GlobalStringNoContents (int ofs)
        int             i;
        ddef_t  *def;
        static char     line[128];
-       
+
        def = ED_GlobalAtOfs(ofs);
        if (!def)
-               sprintf (line,"%i(???)", ofs);
+               sprintf (line,"%i(??\?)", ofs); // LordHavoc: escaping the third ? so it is not a trigraph
        else
                sprintf (line,"%i(%s)", ofs, pr_strings + def->s_name);
-       
+
        i = strlen(line);
        for ( ; i<20 ; i++)
                strcat (line," ");
        strcat (line," ");
-               
+
        return line;
 }