diff options
author | Fredrik Gustafsson <[email protected]> | 2013-07-12 11:48:41 +0200 |
---|---|---|
committer | Fredrik Gustafsson <[email protected]> | 2013-07-12 11:48:41 +0200 |
commit | ffd35b50df2d2878f4701b13088801f3d5cf7a49 (patch) | |
tree | 0e95804d9e42ea2a954687247446204f4f7b75be /lib | |
parent | 467cf7656742892ce964468b39649a8a5759925c (diff) | |
parent | c89952668959197d2295f73cb483bede44fb8520 (diff) | |
download | otp-ffd35b50df2d2878f4701b13088801f3d5cf7a49.tar.gz otp-ffd35b50df2d2878f4701b13088801f3d5cf7a49.tar.bz2 otp-ffd35b50df2d2878f4701b13088801f3d5cf7a49.zip |
Merge branch 'maint'
Diffstat (limited to 'lib')
-rw-r--r-- | lib/inets/src/ftp/ftp.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/inets/src/ftp/ftp.erl b/lib/inets/src/ftp/ftp.erl index 132a384a49..5d9887a9a4 100644 --- a/lib/inets/src/ftp/ftp.erl +++ b/lib/inets/src/ftp/ftp.erl @@ -1417,7 +1417,7 @@ handle_info({'DOWN', _Ref, _Type, Process, Reason}, State) -> handle_info({'EXIT', Pid, Reason}, #state{progress = Pid} = State) -> Report = io_lib:format("Progress reporting stopped for reason ~p~n", - Reason), + [Reason]), error_logger:info_report(Report), {noreply, State#state{progress = ignore}}; |