Author: hbelusca
Date: Wed Jan 7 18:45:46 2015
New Revision: 65997
URL:
http://svn.reactos.org/svn/reactos?rev=65997&view=rev
Log:
[SPEC2DEF]: Turn the tab character into its control code. Timo, is this tab really needed
for ARM stubs, or not? (in that case maybe removing it would be better?)
Modified:
trunk/reactos/tools/spec2def/spec2def.c
Modified: trunk/reactos/tools/spec2def/spec2def.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/tools/spec2def/spec2def.c?…
==============================================================================
--- trunk/reactos/tools/spec2def/spec2def.c [iso-8859-1] (original)
+++ trunk/reactos/tools/spec2def/spec2def.c [iso-8859-1] Wed Jan 7 18:45:46 2015
@@ -391,7 +391,7 @@
if (giArch == ARCH_ARM)
{
fprintf(fileDest,
- " EXPORT %s [FUNC]\n%s\n",
+ "\tEXPORT %s [FUNC]\n%s\n",
pszSymbolName,
pszSymbolName);
}