diff options
author | Hans Bolinder <[email protected]> | 2018-01-23 11:37:34 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2018-01-23 11:37:34 +0100 |
commit | 716ef17d2a00c7f4a5a5cf92fffd18adb94c542d (patch) | |
tree | f517f0ae5ed2c1a6546d5d18df46dcfaf03935e1 /lib/kernel/src/group_history.erl | |
parent | b7ff9c0d76372f16d14ecaac04c6fbbbadaf9435 (diff) | |
parent | dc6a03a8351819a91c1e9235dd84df0acd4ba6b8 (diff) | |
download | otp-716ef17d2a00c7f4a5a5cf92fffd18adb94c542d.tar.gz otp-716ef17d2a00c7f4a5a5cf92fffd18adb94c542d.tar.bz2 otp-716ef17d2a00c7f4a5a5cf92fffd18adb94c542d.zip |
Merge branch 'maint'
* maint:
kernel: Correct contracts and a bug in group_history
stdlib: Correct contracts
dialyzer: Optimize handling of a lot of warnings
Conflicts:
lib/kernel/src/erl_boot_server.erl
Diffstat (limited to 'lib/kernel/src/group_history.erl')
-rw-r--r-- | lib/kernel/src/group_history.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/kernel/src/group_history.erl b/lib/kernel/src/group_history.erl index 91f3663cc5..9745848992 100644 --- a/lib/kernel/src/group_history.erl +++ b/lib/kernel/src/group_history.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2017. All Rights Reserved. +%% Copyright Ericsson AB 2017-2018. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. @@ -260,7 +260,7 @@ resize_log(Name, _OldSize, NewSize) -> ok -> show('$#erlang-history-resize-result', "ok~n", []); - {error, {new_size_too_small, _}} -> + {error, {new_size_too_small, _, _}} -> show('$#erlang-history-resize-result', "failed (new size is too small)~n", []), disable_history(); |