diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-11-10 10:30:27 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-11-10 10:30:27 +0000 |
commit | 74406b49ab73cdf1b4225ec21a60616110d06c2e (patch) | |
tree | ef8ec4114e9274ebe4a375965bd67c144be0865e /Build/source/texk/seetexk/dvitodvi.c | |
parent | ac4c4a45682b1157c58076c40c943a3d9a2cad77 (diff) |
towards TL2010: texk/seetexk
git-svn-id: svn://tug.org/texlive/trunk@15973 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/seetexk/dvitodvi.c')
-rw-r--r-- | Build/source/texk/seetexk/dvitodvi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/texk/seetexk/dvitodvi.c b/Build/source/texk/seetexk/dvitodvi.c index d453bf746e1..a91aa0c4045 100644 --- a/Build/source/texk/seetexk/dvitodvi.c +++ b/Build/source/texk/seetexk/dvitodvi.c @@ -81,7 +81,7 @@ i32 NextOutputFontIndex; /* generates output indicies */ i32 CurrentFontIndex; /* current (old) index in input */ i32 OutputFontIndex; /* current (new) index in ouput */ -char *DVIFileName; /* name of input DVI file */ +const char *DVIFileName; /* name of input DVI file */ FILE *inf; /* the input file itself */ FILE *outf; /* the output DVI file */ @@ -355,7 +355,7 @@ singledimen(char *str) * long line wraps. */ static void -message(int space, char *str, int len) +message(int space, const char *str, int len) { static int beenhere; static int col; @@ -1096,7 +1096,7 @@ PutEmptyPage(void) PutLong(outf, StartOfLastPage); putbyte(outf, DVI_EOP); if (!SFlag) { /* write nice page usage messages */ - char *msg = "[*]"; + const char *msg = "[*]"; message(1, msg, strlen(msg)); } if (ferror(outf)) |