diff options
-rw-r--r-- | Build/source/texk/gsftopk/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/gsftopk/gsftopk.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/Build/source/texk/gsftopk/ChangeLog b/Build/source/texk/gsftopk/ChangeLog index 40dcce369ac..ba2bed9c378 100644 --- a/Build/source/texk/gsftopk/ChangeLog +++ b/Build/source/texk/gsftopk/ChangeLog @@ -1,3 +1,7 @@ +2012-10-17 Peter Breitenlohner <peb@mppmu.mpg.de> + + * gsftopk.c: Avoid MSVC warning. + 2012-10-16 Peter Breitenlohner <peb@mppmu.mpg.de> * gsftopk.c: All current C compilers support `const'. diff --git a/Build/source/texk/gsftopk/gsftopk.c b/Build/source/texk/gsftopk/gsftopk.c index d79d4af4285..52c45e5d9f3 100644 --- a/Build/source/texk/gsftopk/gsftopk.c +++ b/Build/source/texk/gsftopk/gsftopk.c @@ -405,8 +405,8 @@ Boolean test = False; char *fontname; int fontlen; char *mapline = NULL; -const char *mapfile = NULL; -const char *gspath = GS_PATH; /* gs interpreter path */ +char *mapfile = NULL; +char gspath[] = GS_PATH; /* gs interpreter path */ Boolean dosnames = False; Boolean quiet = False; |