diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-12-11 14:28:06 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-12-11 14:28:06 +0000 |
commit | 3226a8894c9f90a96a776fe36456af2cc2d078c7 (patch) | |
tree | 5d1387ede5191c9dc0ca5a1b113642cc04c48d32 /Build/source/texk/kpathsea/dir.c | |
parent | fc101b568d7547030fceb58ab5f097d457d49c57 (diff) |
kpathsea: Resolve some const related problems
git-svn-id: svn://tug.org/texlive/trunk@28500 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/dir.c')
-rw-r--r-- | Build/source/texk/kpathsea/dir.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/kpathsea/dir.c b/Build/source/texk/kpathsea/dir.c index 23d0c7dbc7c..f2b4eaf3fb1 100644 --- a/Build/source/texk/kpathsea/dir.c +++ b/Build/source/texk/kpathsea/dir.c @@ -1,6 +1,6 @@ /* dir.c: directory operations. - Copyright 1992, 1993, 1994, 1995, 2008, 2009, 2010, 2011 Karl Berry. + Copyright 1992, 1993, 1994, 1995, 2008-2012 Karl Berry. Copyright 2000, 2002, 2005 Olaf Weber. This library is free software; you can redistribute it and/or @@ -78,7 +78,7 @@ dir_p (string fn) int kpathsea_dir_links (kpathsea kpse, const_string fn, long nlinks) { - string *hash_ret; + const_string *hash_ret; if (kpse->link_table.size == 0) kpse->link_table = hash_create (457); |