diff options
author | Dan Gudmundsson <[email protected]> | 2012-01-31 15:14:49 +0100 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2012-01-31 15:14:49 +0100 |
commit | 8c9975b642c3f3eb76eaa5ea5964226ac1e4600b (patch) | |
tree | 448d48fbaedc60c24c4e9544b35de7d38eb66305 /lib/observer/src/observer_tv_wx.erl | |
parent | ff48040a8908b6f506f5de64f25c96d012688131 (diff) | |
parent | ac5ccde0295fe1df5fbed8d806253e25e1a52b10 (diff) | |
download | otp-8c9975b642c3f3eb76eaa5ea5964226ac1e4600b.tar.gz otp-8c9975b642c3f3eb76eaa5ea5964226ac1e4600b.tar.bz2 otp-8c9975b642c3f3eb76eaa5ea5964226ac1e4600b.zip |
Merge branch 'maint'
Diffstat (limited to 'lib/observer/src/observer_tv_wx.erl')
-rw-r--r-- | lib/observer/src/observer_tv_wx.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/observer/src/observer_tv_wx.erl b/lib/observer/src/observer_tv_wx.erl index ad3e8c14ab..b276965f83 100644 --- a/lib/observer/src/observer_tv_wx.erl +++ b/lib/observer/src/observer_tv_wx.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2011. All Rights Reserved. +%% Copyright Ericsson AB 2011-2012. 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 @@ -313,7 +313,7 @@ display_table_info(Parent0, Node, Source, Table) -> list_to_strings([]) -> "None"; list_to_strings([A]) -> integer_to_list(A); -list_to_strings([A,B]) -> +list_to_strings([A|B]) -> integer_to_list(A) ++ " ," ++ list_to_strings(B). handle_error(Foo) -> |