diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-11-10 10:28:23 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-11-10 10:28:23 +0000 |
commit | dd3e4c3b3688ba6289553b06af392e42123eb76e (patch) | |
tree | 3c85310ee9f8c2daad249ec64dab026597108f40 /Build/source/texk/dtl/dv2dt.c | |
parent | 6060abeb38217f8b75f672b575714df610bffcad (diff) |
towards TL2010: texk/dtl
git-svn-id: svn://tug.org/texlive/trunk@15966 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/dtl/dv2dt.c')
-rw-r--r-- | Build/source/texk/dtl/dv2dt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/dtl/dv2dt.c b/Build/source/texk/dtl/dv2dt.c index 7627a9d3215..7d7e6f23503 100644 --- a/Build/source/texk/dtl/dv2dt.c +++ b/Build/source/texk/dtl/dv2dt.c @@ -48,7 +48,7 @@ extern int isatty (int ); number of args, string of arguments. */ -struct op_info_st {int code; char * name; int nargs; char * args; }; +struct op_info_st {int code; const char * name; int nargs; const char * args; }; typedef struct op_info_st op_info; @@ -59,7 +59,7 @@ typedef struct op_info_st op_info; last opcode, pointer to opcode info. */ -struct op_table_st {char * name; int first; int last; op_info * list; }; +struct op_table_st {const char * name; int first; int last; op_info * list; }; typedef struct op_table_st op_table; |