diff options
author | Björn-Egil Dahlberg <[email protected]> | 2012-01-04 12:15:09 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2012-01-04 12:15:09 +0100 |
commit | 971058e863c8fa0b4acf5bb2bc0eb8d5f4ef2b14 (patch) | |
tree | 5d0e9c040760675bd76cd8c36bc08e8f9e2dec5c /lib | |
parent | 286bd744d95bf59a3e20535d523fa841b6048d74 (diff) | |
download | otp-971058e863c8fa0b4acf5bb2bc0eb8d5f4ef2b14.tar.gz otp-971058e863c8fa0b4acf5bb2bc0eb8d5f4ef2b14.tar.bz2 otp-971058e863c8fa0b4acf5bb2bc0eb8d5f4ef2b14.zip |
orber: Ignore unused variable in orber_tb.erl
Diffstat (limited to 'lib')
-rw-r--r-- | lib/orber/src/orber_tb.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/orber/src/orber_tb.erl b/lib/orber/src/orber_tb.erl index eee67296d7..d3e3a8497d 100644 --- a/lib/orber/src/orber_tb.erl +++ b/lib/orber/src/orber_tb.erl @@ -209,7 +209,7 @@ check_illegal_tcp_options([binary |T], IllegalOpts) -> check_illegal_tcp_options(T,[binary |IllegalOpts]); check_illegal_tcp_options([{reuseaddr, V} |T], IllegalOpts) -> check_illegal_tcp_options(T,[{reuseaddr, V} |IllegalOpts]); -check_illegal_tcp_options([H|T], IllegalOpts) -> +check_illegal_tcp_options([_H|T], IllegalOpts) -> check_illegal_tcp_options(T, IllegalOpts). %%---------------------------------------------------------------------- |