diff options
author | Hans Nilsson <hans@erlang.org> | 2019-11-27 16:12:39 +0100 |
---|---|---|
committer | Hans Nilsson <hans@erlang.org> | 2019-11-28 09:47:12 +0100 |
commit | 43b4d9deb203310a9a74ae013bbbf44007868b6f (patch) | |
tree | a943840a307d1bdba5eb213fc74b933f5c978d62 /lib | |
parent | 6901bf27ade015c3bb6ff5766d7f71fbec90dd8f (diff) | |
download | erlang-43b4d9deb203310a9a74ae013bbbf44007868b6f.tar.gz |
ftp: Make var anonymous to remove erlc warning
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ftp/src/ftp.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ftp/src/ftp.erl b/lib/ftp/src/ftp.erl index 2f7a67df67..36b57837fc 100644 --- a/lib/ftp/src/ftp.erl +++ b/lib/ftp/src/ftp.erl @@ -1404,8 +1404,8 @@ handle_info({Transport, Socket, Data}, #state{csock = {Transport, Socket}, State1 = State0#state{ctrl_data = CtrlData}, State = activate_ctrl_connection(State1), {noreply, State}; - {continue, CtrlData} -> - ?DBG(' ...Continue... ctrl_data=~p~n',[CtrlData]), + {continue, _CtrlData} -> + ?DBG(' ...Continue... ctrl_data=~p~n',[_CtrlData]), {noreply, State0} end; |