diff options
author | Lars Thorsen <lars.thorsen@ericsson.com> | 2016-09-07 14:03:50 +0200 |
---|---|---|
committer | Lars Thorsen <lars.thorsen@ericsson.com> | 2016-09-07 14:03:50 +0200 |
commit | 04e8e3716a02c262e2569c94c4dba67d1782a1e9 (patch) | |
tree | bd596511bd2d96e211ffd2d2a1cdf71920a6c125 /lib/ic | |
parent | 68c748c3f7e75f8fa5e583e5cb979490258eb5f3 (diff) | |
parent | cda114d8186af91f4fa18c5e549c85ffa3b5ea55 (diff) | |
download | otp-04e8e3716a02c262e2569c94c4dba67d1782a1e9.tar.gz otp-04e8e3716a02c262e2569c94c4dba67d1782a1e9.tar.bz2 otp-04e8e3716a02c262e2569c94c4dba67d1782a1e9.zip |
Merge branch 'lars/utf-8-path-bugs/ERL-179/OTP-13718' into maint
* lars/utf-8-path-bugs/ERL-179/OTP-13718:
[snmp] Correct bug when path to mib contains UTF-8 characters
[ic] Fix but when UTF-8 character in path to idl spec
Diffstat (limited to 'lib/ic')
-rw-r--r-- | lib/ic/src/ic_codegen.erl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/ic/src/ic_codegen.erl b/lib/ic/src/ic_codegen.erl index adad021da1..a3f141f606 100644 --- a/lib/ic/src/ic_codegen.erl +++ b/lib/ic/src/ic_codegen.erl @@ -245,8 +245,8 @@ emit_stub_head(G, F1, Name, java) -> stub_header(G, Name) -> ["Implementation stub file", "", - io_lib:format("Target: ~s", [Name]), - io_lib:format("Source: ~s", [ic_genobj:idlfile(G)]), + io_lib:format("Target: ~ts", [Name]), + io_lib:format("Source: ~ts", [ic_genobj:idlfile(G)]), io_lib:format("IC vsn: ~s", [?COMPILERVSN]), "", "This file is automatically generated. DO NOT EDIT IT."]. @@ -298,8 +298,8 @@ emit_hrl_head(G, Fd, Name, c_server) -> hrl_header(G, Name) -> ["", - io_lib:format("Target: ~s", [Name]), - io_lib:format("Source: ~s", [ic_genobj:idlfile(G)]), + io_lib:format("Target: ~ts", [Name]), + io_lib:format("Source: ~ts", [ic_genobj:idlfile(G)]), io_lib:format("IC vsn: ~s", [?COMPILERVSN]), "", "This file is automatically generated. DO NOT EDIT IT."]. |