aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorFredrik Gustafsson <[email protected]>2013-07-12 11:47:21 +0200
committerFredrik Gustafsson <[email protected]>2013-07-12 11:47:21 +0200
commitc89952668959197d2295f73cb483bede44fb8520 (patch)
treede9a77a1ba0a11c0ac2fc492a511d78f8c710c46 /lib
parent193639fde33e135cc390f1df13076e5632fdd43c (diff)
parente4ed3bb6dae7faf95a43ba3cdbb1de745d75fdd4 (diff)
downloadotp-c89952668959197d2295f73cb483bede44fb8520.tar.gz
otp-c89952668959197d2295f73cb483bede44fb8520.tar.bz2
otp-c89952668959197d2295f73cb483bede44fb8520.zip
Merge branch 'aw/fix-ftp-report-formatting/OTP-11202' into maint
* aw/fix-ftp-report-formatting/OTP-11202: Add missing brackets to report formatting on ftp_progress process exit
Diffstat (limited to 'lib')
-rw-r--r--lib/inets/src/ftp/ftp.erl2
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}};