From 0ab87a8b5e8456ffec73f8997875a678c43d8c5f Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Sun, 17 Nov 2013 22:31:15 +0000 Subject: [PATCH] [SPEC2DEF] Fix MSVC build as well svn path=/trunk/; revision=61027 --- reactos/tools/spec2def/spec2def.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/tools/spec2def/spec2def.c b/reactos/tools/spec2def/spec2def.c index fe64abaf6fe..244adf172a4 100644 --- a/reactos/tools/spec2def/spec2def.c +++ b/reactos/tools/spec2def/spec2def.c @@ -427,8 +427,8 @@ OutputLine_def_GCC(FILE *fileDest, EXPORT *pexp) /* Check if this is a forwarded export */ if (pexp->strTarget.buf) { - DbgPrint("Got redirect '%.*s'\n", pexp->strTarget.len, pexp->strTarget.buf); int fIsExternal = !!ScanToken(pexp->strTarget.buf, '.'); + DbgPrint("Got redirect '%.*s'\n", pexp->strTarget.len, pexp->strTarget.buf); /* print the target name, don't decorate if it is external */ fprintf(fileDest, "=");