diff options
author | Björn Gustavsson <[email protected]> | 2016-09-07 14:24:38 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-09-07 14:24:38 +0200 |
commit | c542eabc91c9a4c1e6b9e16ba565e99984de41d2 (patch) | |
tree | 804b0fc6079dd0d39a85b1c58201c6438cbed0f1 /lib/ic | |
parent | ddc0c20c521e00932187f55d37c2948ed324a12d (diff) | |
parent | b834a527c2f420a80806fbf36d4585c1e530061c (diff) | |
download | otp-c542eabc91c9a4c1e6b9e16ba565e99984de41d2.tar.gz otp-c542eabc91c9a4c1e6b9e16ba565e99984de41d2.tar.bz2 otp-c542eabc91c9a4c1e6b9e16ba565e99984de41d2.zip |
Merge branch 'maint'
* maint:
[snmp] Correct bug when path to mib contains UTF-8 characters
[ic] Fix but when UTF-8 character in path to idl spec
sys_core_fold: Don't move a fun into a guard
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."]. |