summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/tex.ch
diff options
context:
space:
mode:
authorJonathan Kew <jfkthame@googlemail.com>2008-03-27 09:14:58 +0000
committerJonathan Kew <jfkthame@googlemail.com>2008-03-27 09:14:58 +0000
commit8fa331c4a7ed20194a81c2a9c5a9511ca2ab66dd (patch)
treeee493d30c99ceb5c734a159563bede09e88fe6be /Build/source/texk/web2c/tex.ch
parentee5049fdbb8acbbac0e06dd1450e94a3ccdba59f (diff)
clean up some const-string warnings
git-svn-id: svn://tug.org/texlive/trunk@7184 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/tex.ch')
-rw-r--r--Build/source/texk/web2c/tex.ch6
1 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/texk/web2c/tex.ch b/Build/source/texk/web2c/tex.ch
index be8ff7b6e0c..99bf668123b 100644
--- a/Build/source/texk/web2c/tex.ch
+++ b/Build/source/texk/web2c/tex.ch
@@ -549,7 +549,7 @@ We define |input_ln| in C, for efficiency. Nevertheless we quote the module
tini@/
@#
@!bound_default:integer; {temporary for setup}
-@!bound_name:^char; {temporary for setup}
+@!bound_name:const_cstring; {temporary for setup}
@#
@!mem_bot:integer;{smallest index in the |mem| array dumped by \.{INITEX};
must not be less than |mem_min|}
@@ -2319,7 +2319,7 @@ else
@x [29.534] l.10285 - Adjust for C string conventions.
@!months:packed array [1..36] of char; {abbreviations of month names}
@y
-@!months:^char;
+@!months:const_cstring;
@z
@x [29.534] l.10300 - Filename change for the recorder.
@@ -5048,7 +5048,7 @@ if j=18 then
if clobbered then print("clobbered")
else begin {We have the string; run system(3). We don't have anything
reasonable to do with the return status, unfortunately discard it.}
- system(stringcast(address_of(str_pool[str_start[str_ptr]])));
+ system(conststringcast(address_of(str_pool[str_start[str_ptr]])));
print("executed");
end;
end