summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/tftopl.ch
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2014-11-06 11:03:09 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2014-11-06 11:03:09 +0000
commite8386671e9408e3e71d63a518a5d8851689c3e7c (patch)
tree3aa8e4a8d5dc19bf09df17001d4e8457ea81970f /Build/source/texk/web2c/tftopl.ch
parentef9ec320129a718c2858d821148e87a5c563107c (diff)
texk/web2c: Bug fix: Add stringcast in order not to print strings as numbers
git-svn-id: svn://tug.org/texlive/trunk@35526 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/tftopl.ch')
-rw-r--r--Build/source/texk/web2c/tftopl.ch2
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/tftopl.ch b/Build/source/texk/web2c/tftopl.ch
index 2d9b1945177..fad8087f4b0 100644
--- a/Build/source/texk/web2c/tftopl.ch
+++ b/Build/source/texk/web2c/tftopl.ch
@@ -337,7 +337,7 @@ begin
else if strcmp (optarg, 'octal') = 0 then
charcode_format := charcode_octal
else
- print_ln ('Bad character code format', optarg, '.');
+ print_ln ('Bad character code format', stringcast(optarg), '.');
end; {Else it was a flag; |getopt| has already done the assignment.}
until getopt_return_val = -1;