[SPEC2DEF]

Remove a spurious %

svn path=/trunk/; revision=61028
This commit is contained in:
Timo Kreuzer 2013-11-17 22:43:23 +00:00
parent 0ab87a8b5e
commit 11393e5451

View file

@ -359,7 +359,7 @@ PrintName(FILE *fileDest, EXPORT *pexp, PSTRING pstr, int fDeco)
/* Print the prefix, but skip it for (GCC && stdcall) */
if (gbMSComp || (pexp->nCallingConvention != CC_STDCALL))
{
fprintf(fileDest, "%c%", pexp->nCallingConvention == CC_FASTCALL ? '@' : '_');
fprintf(fileDest, "%c", pexp->nCallingConvention == CC_FASTCALL ? '@' : '_');
}
/* Print the name with trailing decoration */