summaryrefslogtreecommitdiff
path: root/Build/source/texk/seetexk/dvibook.c
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2009-11-10 10:30:27 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2009-11-10 10:30:27 +0000
commit74406b49ab73cdf1b4225ec21a60616110d06c2e (patch)
treeef8ec4114e9274ebe4a375965bd67c144be0865e /Build/source/texk/seetexk/dvibook.c
parentac4c4a45682b1157c58076c40c943a3d9a2cad77 (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/dvibook.c')
-rw-r--r--Build/source/texk/seetexk/dvibook.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/texk/seetexk/dvibook.c b/Build/source/texk/seetexk/dvibook.c
index fcca3f1cf73..d02dfe73d33 100644
--- a/Build/source/texk/seetexk/dvibook.c
+++ b/Build/source/texk/seetexk/dvibook.c
@@ -76,7 +76,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 */
@@ -134,7 +134,7 @@ static void PutEmptyPage(void);
* 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;
@@ -883,7 +883,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))