diff options
author | Hans Nilsson <[email protected]> | 2014-03-25 15:42:33 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2014-03-25 15:42:33 +0100 |
commit | ec398c4cab329a599d558440800f0d7e6ca14a27 (patch) | |
tree | a4b2e5aef1903cd2047c018a556800822ef2ea6b /lib | |
parent | 66014ea66f2f93b2fd10cc8673602024a5581346 (diff) | |
parent | 36f21cf34357c2c6ae357dd4edc063e438f7161c (diff) | |
download | otp-ec398c4cab329a599d558440800f0d7e6ca14a27.tar.gz otp-ec398c4cab329a599d558440800f0d7e6ca14a27.tar.bz2 otp-ec398c4cab329a599d558440800f0d7e6ca14a27.zip |
Merge branch 'hans/ssh/dialyzer_warning/OTP-11821'
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ssh/src/ssh_connection_handler.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssh/src/ssh_connection_handler.erl b/lib/ssh/src/ssh_connection_handler.erl index 070a2db5a8..d7fff14f92 100644 --- a/lib/ssh/src/ssh_connection_handler.erl +++ b/lib/ssh/src/ssh_connection_handler.erl @@ -206,7 +206,7 @@ global_request(ConnectionHandler, Type, false = Reply, Data) -> send_all_state_event(ConnectionHandler, {global_request, self(), Type, Reply, Data}). %%-------------------------------------------------------------------- --spec send(pid(), channel_id(), integer(), iolist(), timeout()) -> +-spec send(pid(), channel_id(), integer(), iodata(), timeout()) -> ok | {error, timeout} | {error, closed}. %%-------------------------------------------------------------------- send(ConnectionHandler, ChannelId, Type, Data, Timeout) -> |