summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorMartin Ruckert <martin.ruckert@hm.edu>2022-04-11 13:39:51 +0000
committerMartin Ruckert <martin.ruckert@hm.edu>2022-04-11 13:39:51 +0000
commit8e3c2052081f982c38bc2ae04e03576844f3349a (patch)
tree3805497f1d6c1da28f61e98bd89575ff4cbb050c /Build
parentb5ec40b2b69a5bdab26285dadeb29c5e1cdde018 (diff)
eliminating the string alias for char*
git-svn-id: svn://tug.org/texlive/trunk@62998 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r--Build/source/texk/web2c/hitexdir/hitex.w4
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/web2c/hitexdir/hitex.w b/Build/source/texk/web2c/hitexdir/hitex.w
index 515767c6e9a..bb4160f290e 100644
--- a/Build/source/texk/web2c/hitexdir/hitex.w
+++ b/Build/source/texk/web2c/hitexdir/hitex.w
@@ -34320,9 +34320,9 @@ Therefore we record {\tt texmf.cnf} with the following code:
@<record {\tt texmf.cnf}@>=
if (recorder_enabled) {
- string *p = kpse_find_file_generic ("texmf.cnf", kpse_cnf_format, 0, 1);
+ char **p = kpse_find_file_generic ("texmf.cnf", kpse_cnf_format, 0, 1);
if (p && *p) {
- string *pp = p;
+ char **pp = p;
while (*p) {
recorder_record_input (*p);
free (*p);