summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/xetexdir
diff options
context:
space:
mode:
authorJonathan Kew <jfkthame@googlemail.com>2007-01-01 10:31:09 +0000
committerJonathan Kew <jfkthame@googlemail.com>2007-01-01 10:31:09 +0000
commit99925069d9580057dbe0776fd86c63181184329c (patch)
tree181e76cc3ebbd7763926bc2b620c56d284f28c14 /Build/source/texk/web2c/xetexdir
parent134b8513d13da10d892fcf229f72ef0af818ffd4 (diff)
moved variable declaration for pre-C99 compilers
git-svn-id: svn://tug.org/texlive/trunk@3086 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/xetexdir')
-rw-r--r--Build/source/texk/web2c/xetexdir/XeTeX_ext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/xetexdir/XeTeX_ext.c b/Build/source/texk/web2c/xetexdir/XeTeX_ext.c
index 57e3b3c05b5..e1c9ef94648 100644
--- a/Build/source/texk/web2c/xetexdir/XeTeX_ext.c
+++ b/Build/source/texk/web2c/xetexdir/XeTeX_ext.c
@@ -181,6 +181,7 @@ void initversionstring(char **versions)
int fc_version = FcGetVersion();
#endif
extern FT_Library gFreeTypeLibrary; /* in XeTeXFontInst_FT2 */
+ FT_Int ftMajor, ftMinor, ftPatch;
char* fmt =
"Compiled with ICU version %s [with modifications for XeTeX]\n"
@@ -211,7 +212,6 @@ void initversionstring(char **versions)
/* len will be more than enough, because of the placeholder chars in fmt
that get replaced by the arguments */
- FT_Int ftMajor, ftMinor, ftPatch;
if (gFreeTypeLibrary == 0 && FT_Init_FreeType(&gFreeTypeLibrary) != 0) {
fprintf(stderr, "FreeType initialization failed!\n");
exit(9);