diff options
author | Sverker Eriksson <[email protected]> | 2014-01-20 15:11:13 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2014-01-20 15:11:13 +0100 |
commit | a9468296fce5c2f26b448175ec77660ddbad2c76 (patch) | |
tree | 46df51138bb10faf06d35d74cdce706c93cc8801 /lib | |
parent | d7b5e517cf1fa91310072ea6992799c49be70ae8 (diff) | |
parent | ba78a94d4f03d092329437def32a1468d72d0424 (diff) | |
download | otp-a9468296fce5c2f26b448175ec77660ddbad2c76.tar.gz otp-a9468296fce5c2f26b448175ec77660ddbad2c76.tar.bz2 otp-a9468296fce5c2f26b448175ec77660ddbad2c76.zip |
Merge branch 'sverk/jinterface/unicode-test-bug'
* sverk/jinterface/unicode-test-bug:
jinterface: Fix unicode bug in test code
Diffstat (limited to 'lib')
-rw-r--r-- | lib/jinterface/test/jitu.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/jinterface/test/jitu.erl b/lib/jinterface/test/jitu.erl index a029c063bc..46b8cb3ac2 100644 --- a/lib/jinterface/test/jitu.erl +++ b/lib/jinterface/test/jitu.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2004-2013. All Rights Reserved. +%% Copyright Ericsson AB 2004-2014. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -133,7 +133,7 @@ es(L,Quote,EscSpace) -> cmd(Cmd) -> PortOpts = [{line,80},eof,exit_status,stderr_to_stdout], - io:format("cmd: ~s~n", [Cmd]), + io:format("cmd: ~ts~n", [Cmd]), case catch open_port({spawn,Cmd}, PortOpts) of Port when is_port(Port) -> case erlang:port_info(Port,os_pid) of |