aboutsummaryrefslogtreecommitdiffstats
path: root/lib/xmerl/src/xmerl_uri.erl
diff options
context:
space:
mode:
authorBjörn-Egil Dahlberg <[email protected]>2012-01-04 18:24:31 +0100
committerBjörn-Egil Dahlberg <[email protected]>2012-01-04 18:24:31 +0100
commita69fb329f36b8c76b5bf5d2819e66b481e5a8b7f (patch)
tree2bcef4f81b6325a6de8d24a19e6a360ca3db6b6b /lib/xmerl/src/xmerl_uri.erl
parent7f2cd602577646e927c60cf381e88246e6ecee96 (diff)
parentf9ca630a95e1e2adb1b225bfb69e3101678183f3 (diff)
downloadotp-a69fb329f36b8c76b5bf5d2819e66b481e5a8b7f.tar.gz
otp-a69fb329f36b8c76b5bf5d2819e66b481e5a8b7f.tar.bz2
otp-a69fb329f36b8c76b5bf5d2819e66b481e5a8b7f.zip
Merge branch 'maint'
* maint: erts: Use re instead of regexp in testsuite erts: Remove unused code in testsuites orber: Use modern list guard in testsuite orber: Ignore unused variable in orber_tb.erl xmerl: Ignore unused variable in xmerl_uri.erl syntax_tool: Add missing type information hipe: Suppress warnings for unused variables hipe: Add type information to cfg_info record tools: Use literal formatting in erl_memory.c asn1: Remove unused variable in asn1_erl_nif.c ei: Remove unused variable in ei_format.c erts: Add missing prototype to DRIVER_INIT runtime_tools: Fix signedness in trace_ip_drv.c to_erl: Remove compiler warnings heart: Suppress compiler warnings erts: Remove compiler warnings in inet_gethost.c erts: Remove dead code in inet_gethost.c erts: Remove dead code
Diffstat (limited to 'lib/xmerl/src/xmerl_uri.erl')
-rw-r--r--lib/xmerl/src/xmerl_uri.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/xmerl/src/xmerl_uri.erl b/lib/xmerl/src/xmerl_uri.erl
index a0c6f1c2a7..1864651491 100644
--- a/lib/xmerl/src/xmerl_uri.erl
+++ b/lib/xmerl/src/xmerl_uri.erl
@@ -358,7 +358,7 @@ scan_host(C0) ->
%% Hex3=<?HEX;
%% Hex4=<?HEX ->
%% {C1,lists:reverse(lists:append(IPv6address))};
- {C1,Hostname,[A|_HostF]} ->
+ {C1,Hostname,[_A|_HostF]} ->
{C1,lists:reverse(lists:append(Hostname))}
%% _ ->
%% {error,no_host}