summaryrefslogtreecommitdiff
path: root/Build/source/texk
diff options
context:
space:
mode:
authorTaco Hoekwater <taco@elvenkind.com>2006-12-09 13:40:31 +0000
committerTaco Hoekwater <taco@elvenkind.com>2006-12-09 13:40:31 +0000
commitb26bfd18cecd1fb58ca6b1201cf135b88f9a6482 (patch)
tree4864b0d43ccf04e3a253d6c716f66d07b0d4ecbc /Build/source/texk
parent84ed42c114f83ff43c50519956e9d5a1f03f48a7 (diff)
fix a bug in the declaration list that prevented compilation on aix
git-svn-id: svn://tug.org/texlive/trunk@2652 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk')
-rw-r--r--Build/source/texk/web2c/mpware/dmp_ffile.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Build/source/texk/web2c/mpware/dmp_ffile.c b/Build/source/texk/web2c/mpware/dmp_ffile.c
index cc1eb8c8491..6d6a439e22d 100644
--- a/Build/source/texk/web2c/mpware/dmp_ffile.c
+++ b/Build/source/texk/web2c/mpware/dmp_ffile.c
@@ -41,8 +41,7 @@ fsearch(char *nam, char *ext, int path_type)
{
{
FILE *f = NULL;
- int format;
- format = kpse_types[path_type];
+ int format = kpse_types[path_type];
string fname = kpse_find_file(nam, format, true);
const_string mode = kpse_format_info[format].binmode
? FOPEN_RBIN_MODE : FOPEN_R_MODE;