diff options
author | Björn Gustavsson <[email protected]> | 2011-02-23 13:03:17 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-02-23 13:03:17 +0100 |
commit | 88994f8e203dc6bf31968cad0bc70b6789a15a0b (patch) | |
tree | 23ca9855ede99f96630c6d873c0fc2d48cc9fb20 /erts/emulator/test/tuple_SUITE.erl | |
parent | 84884b96de521491d34a19b1b3497d3d76549126 (diff) | |
download | otp-88994f8e203dc6bf31968cad0bc70b6789a15a0b.tar.gz otp-88994f8e203dc6bf31968cad0bc70b6789a15a0b.tar.bz2 otp-88994f8e203dc6bf31968cad0bc70b6789a15a0b.zip |
emulator tests: Eliminate some compiler warnings
Diffstat (limited to 'erts/emulator/test/tuple_SUITE.erl')
-rw-r--r-- | erts/emulator/test/tuple_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/test/tuple_SUITE.erl b/erts/emulator/test/tuple_SUITE.erl index c1f171d9b5..bfc3910742 100644 --- a/erts/emulator/test/tuple_SUITE.erl +++ b/erts/emulator/test/tuple_SUITE.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1997-2010. All Rights Reserved. +%% Copyright Ericsson AB 1997-2011. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -99,7 +99,7 @@ t_tuple_size(Config) when is_list(Config) -> ludicrous_tuple_size(T) when tuple_size(T) =:= 16#7777777777777777777777777777777777 -> ok; -ludicrous_tuple_size(T) -> error. +ludicrous_tuple_size(_) -> error. %% Tests element/2. |